RTRIM
Removes any trailing whitespace from a given string.
Syntax
RTRIM(STRING)
Arguments
STRING
STRING
Type: string
A sequence of characters.
Returns
Type: string
STRING
with any trailing whitespaces removed.
Examples
STRING
Output
hey
hey
hey
hey
hey
hey
hey
hey
a b
a b
Transformation job example
SQL
CREATE JOB function_operator_example
ADD_MISSING_COLUMNS = true
AS INSERT INTO default_glue_catalog.upsolver_samples.orders_transformed_data
MAP_COLUMNS_BY_NAME
SELECT
RTRIM(' hi ') AS rtrim_example
FROM default_glue_catalog.upsolver_samples.orders_raw_data
WHERE $commit_time BETWEEN run_start_time() AND run_end_time()
LIMIT 1;
Query result
rtrim_example
hi
Last updated