DAY_OF_YEAR
Returns the day of the year from the timestamp. Values range from 1 to 366.
Syntax
DAY_OF_YEAR(timestamp)
Arguments
Name
Type
Description
Default Value
timestamp
timestamp
Returns
bigint
Examples
timestamp
Output
timestamp '2018-03-10 08:55:12.456'
69
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 timestamp,
DAY_OF_YEAR(timestamp) AS Output
FROM default_glue_catalog.upsolver_samples.orders_raw_data
LET timestamp = timestamp '2018-03-10 08:55:12.456'
WHERE $commit_time BETWEEN run_start_time() AND run_end_time()
LIMIT 1;
Query result
timestamp
Output
timestamp '2018-03-10 08:55:12.456'
69
Last updated