SPLIT_TO_RECORD

Returns the given string split by the provided delimiter.

Syntax

SPLIT_TO_RECORD(fieldNames, splitBy, filterEmptyValues, value)

Arguments

NameTypeDescriptionDefault Value

fieldNames

string

splitBy

string

','

filterEmptyValues

boolean

false

value

string

Examples

fieldNamessplitByfilterEmptyValuesvalueOutput

'a,b,c'

','

false

'1,2,3,4'

{a: 1, b: 2, c: 3}

'a,b,c'

','

false

'1,2'

{a: 1, b: 2, c: ``}

'a,b,c'

','

true

'1,,3'

{a: 1, b: ``, c: 3}

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 time_filter()
    LIMIT 1;

Query result

fieldNamessplitByfilterEmptyValuesvalueOutput

'a,b,c'

','

false

'1,2,3,4'

{a: 1, b: 2, c: 3}

Last updated