RTRIM
(RTRIM(
text
))
Trims trailing blanks from
text
, returning a text string.
In the following example, the value of
vrtrim
is the text string
ABCDE
without the trailing blanks.
SET VAR vrtrim = (RTRIM('ABCDE '))