TO_STRING

Converts any value to a string representation.

Syntax

TO_STRING(value)

Arguments

NameTypeDescriptionDefault Value

value

any

The value to convert

Returns

string

Examples

valueOutput

1

1

1.5

1.5

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 value,
        TO_STRING(value) AS Output
    FROM default_glue_catalog.upsolver_samples.orders_raw_data
    LET value = 1
    WHERE time_filter()
    LIMIT 1;

Query result

valueOutput

1

1

Last updated