SORT_BY
Sorts the values array by the sortKeys array.
Syntax
SORT_BY(values, sortKeys)
Arguments
Name
Type
Description
Default Value
values
any
sortKeys
any
Examples
values
sortKeys
Output
array['a', 'b']
array['c', 'd']
[a
, b
]
array['a', 'b']
array['d', 'c']
[b
, a
]
array['a', 'b']
array[1, 2]
[a
, b
]
array['a', 'b']
array[2, 1]
[b
, a
]
array['a', 'b']
array[false, true]
[a
, b
]
array['a', 'b']
array[true, false]
[b
, a
]
array['a', 'b']
'c'
a
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 values[], sortKeys[],
SORT_BY(values[], sortKeys[]) AS Output
FROM default_glue_catalog.upsolver_samples.orders_raw_data
LET values = array['a', 'b'],
sortKeys = array['c', 'd']
WHERE $commit_time BETWEEN run_start_time() AND run_end_time()
LIMIT 1;
Query result
values[]
sortKeys[]
Output
array['a', 'b']
array['c', 'd']
[a
, b
]
Last updated