RTRIM
Removes trailing spaces or characters from a string.
Syntax
RTRIM(expression varchar, trim_expression varchar) → varchar
expression: The expression to be trimmed.
trim_expression: Trailing characters to trim. If this parameter is not specified, then spaces will be trimmed from the input expression.
Examples
SELECT RTRIM('pancake', 'cake')
-- pan
SELECT RTRIM('pancake pan', 'abnp')
-- pancake
SELECT RTRIM('spice ')
-- spice
Last updated
Was this helpful?