PARSE_DURATION

Parses strings with a number followed by a unit abbreviation into an interval. Supported units are d, h, m, s, ms, us, and ns. For example, the string 30m will be parsed into an interval of 30 minutes.

Syntax

PARSE_DURATION(value)

Arguments

Returns

interval day to second


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 value,
        PARSE_DURATION(value) AS Output
    FROM default_glue_catalog.upsolver_samples.orders_raw_data
    LET value = '6500000ns'
    WHERE $commit_time BETWEEN run_start_time() AND run_end_time()
    LIMIT 1;

Query result

Last updated