SPLIT_TO_RECORD

Returns the given string split by the provided delimiter.

Syntax

SPLIT_TO_RECORD(fieldNames, splitBy, filterEmptyValues, value)

Arguments

Examples

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 fieldNames, splitBy, filterEmptyValues, value,
        SPLIT_TO_RECORD('a,b,c', ',', false, value) AS Output
    FROM default_glue_catalog.upsolver_samples.orders_raw_data
    LET fieldNames = 'a,b,c',
        splitBy = ',',
        filterEmptyValues = false,
        value = '1,2,3,4'
    WHERE $commit_time BETWEEN run_start_time() AND run_end_time()
    LIMIT 1;

Query result

Last updated