Links
Comment on page

TO_UNIX_EPOCH_MILLIS

Convert a date to it's Epoch (unix) seconds representation

Syntax

TO_UNIX_EPOCH_MILLIS(date)

Arguments

Name
Type
Description
Default Value
date
timestamp

Returns

bigint

Examples

date
Output
timestamp '2018-03-10 08:55:12.456'
1520672112456

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 date,
TO_UNIX_EPOCH_MILLIS(date) AS Output
FROM default_glue_catalog.upsolver_samples.orders_raw_data
LET date = timestamp '2018-03-10 08:55:12.456'
WHERE time_filter()
LIMIT 1;

Query result

date
Output
timestamp '2018-03-10 08:55:12.456'
1520672112456