SQL Server 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.
Note: Also look at the LTRIM() function.
Syntax
RTRIM(string)
Parameter Values
Parameter | Description |
---|---|
string | Required. The string to remove trailing spaces from |
Technical Details
Works in: | SQL Server (starting with 2008), Azure SQL Database, Azure SQL Data Warehouse, Parallel Data Warehouse |
---|