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: | MySQL 5.7, MySQL 5.6, MySQL 5.5, MySQL 5.1, MySQL 5.0, MySQL 4.1, MySQL 4.0, MySQL 3.23 | 
|---|

