RTRIM (SQL)
Synopsis
RTRIM(string-expression)
{fn RTRIM(string-expression)}
Description
RTRIM strips the trailing blanks from a string expression, and returns the string as type VARCHAR. If string-expression is NULL, RTRIM returns NULL. If string-expression is a string consisting entirely of blank spaces, RTRIM returns the empty string ('').
RTRIM always returns data type VARCHAR, regardless of the data type of the input expression to be trimmed.
RTRIM leaves leading blanks; to remove leading blanks, use LTRIM. To remove leading and/or trailing characters of any type, use TRIM. To pad a string with trailing blanks or other characters, use RPAD. To create a string of blanks, use SPACE.
Note that RTRIM can be used as an ODBC scalar function (with the curly brace syntax) or as an SQL general function.
Arguments
string-expression
A string expression, which can be the name of a column, a string literal, or the result of another scalar function, where the underlying data type can be represented as any character type (such as CHAR or VARCHAR).
Example
The following example removes the five trailing blanks from the string. It leaves the five leading blanks:
SELECT {fn RTRIM(" Test string with 5 leading and 5 trailing spaces. ")}
Returns:
Before RTRIM start: Test string with 5 leading and 5 trailing spaces. :end After RTRIM start: Test string with 5 leading and 5 trailing spaces.:end