MONTH
Extracts the month number (from 1 to 12) for a given date or timestamp.
Syntax
EXTRACT(MONTH FROM date_timestamp_expression string) → bigint
date_timestamp_expression: A
DATE
orTIMESTAMP
expression.
Examples
SELECT EXTRACT(MONTH FROM TIMESTAMP '2019-08-12 01:00:00.123456')
-- 8
SELECT EXTRACT(MONTH FROM DATE '2019-08-12')
-- 8
SELECT EXTRACT(MONTH FROM CAST('2019-08-12 01:00:00' AS TIMESTAMP))
-- 8
Usage Notes
This function uses the EXTRACT
function. When using the CAST
function, timestamps containing milliseconds are not allowed.
Last updated
Was this helpful?