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. Syntaxselect rtrim(str); ParametersStr: string for which extra space is to be removed from the tail. Example 1Select rtrim('TheDeveloperBlog '); Output: Example 2Select rtrim('mysql '); Output:
Next TopicMySQL String
|