C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
MySQL RTRIM() FunctionThe Rtrim() is a String function of MySQL. This method removes the extra space if present in the tail of the string. Syntax
select rtrim(str); Parameters
Str: string for which extra space is to be removed from the tail. Example 1
Select rtrim('TheDeveloperBlog ');
Output:
Example 2
Select rtrim('mysql ');
Output:
Next TopicMySQL String
|