SQL Server RTRIM() Function
THE WORLD'S LARGEST WEB DEVELOPER SITE

SQL Server RTRIM() Function

❮ SQL Server Functions

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: See also 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 2014, SQL Server 2012, SQL Server 2008 R2, SQL Server 2008, SQL Server 2005

❮ SQL Server Functions