RTRIM
Returns a string formed by removing white space or any characters that appear from the right side of an input string.
See also:
[SELECT
] [LTRIM
] [TRIM
]
Syntax
SELECT RTRIM(character_expression[, character ]) FROM <multipartIdentifier>;
Arguments
character_expression
A literal string or string column.
character
An optional character to remove if found at the end of the character_expression.
Return Value(s)
Returns a string.
Examples
Remove trailing whitespace from a string column
SELECT rtrim(description) AS trailing_whitespace_removed
FROM google.compute.instances
WHERE project = 'stackql-demo'
AND zone = 'australia-southeast1-a';
For more information, see https://www.sqlite.org/lang_corefunc.html#rtrim