Comment on page
QUARTER
Returns the quarter of year from timestamp. Values range from 1 to 4.
QUARTER(timestamp)
Name | Type | Description | Default Value |
---|---|---|---|
timestamp | timestamp | | |
bigint
timestamp | Output |
---|---|
timestamp '2018-03-10 08:55:12.456' | 1 |
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,
QUARTER(timestamp) AS Output
FROM default_glue_catalog.upsolver_samples.orders_raw_data
LET timestamp = timestamp '2018-03-10 08:55:12.456'
WHERE time_filter()
LIMIT 1;
timestamp | Output |
---|---|
timestamp '2018-03-10 08:55:12.456' | 1 |
Last modified 3mo ago