description |
---|
Removes trailing spaces or characters from a string. |
- 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
{% code title="RTRIM example" %}
SELECT RTRIM('pancake', 'cake')
-- pan
{% endcode %}
{% code title="RTRIM example" %}
SELECT RTRIM('pancake pan', 'abnp')
-- pancake
{% endcode %}
{% code title="RTRIM example" %}
SELECT RTRIM('spice ')
-- spice
{% endcode %}