MS Access 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: | Access 2016, Access 2013, Access 2010, Access 2007, Access 2003, Access XP, Access 2000 |
---|