MySQL RTRIM() Function
Example
Remove trailing spaces from a string:
SELECT RTRIM("SQL Tutorial ") AS RightTrimmedString;
Try it Yourself »
Definition and Usage
The RTRIM() function removes trailing spaces from a string.
Syntax
RTRIM(string)
Parameter Values
Parameter | Description |
---|---|
string | Required. The string to remove trailing spaces from |
Technical Details
Works in: | From MySQL 4.0 |
---|