TO_DOUBLE
Last updated
Last updated
Convert any numeric value to a Double precision floating point IEEE-754 number.
TO_DOUBLE(value)
value
numeric
The numeric value to convert
Returns a double
value.
3
3.0
3.5
3.5
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_DOUBLE(value) AS Output
FROM default_glue_catalog.upsolver_samples.orders_raw_data
LET value = 3
WHERE $commit_time BETWEEN run_start_time() AND run_end_time()
LIMIT 1;
3
3.0