This section contains reference documentation for the month function.
Last updated 2 years ago
Returns the month of the year from the given epoch millis in UTC or specified timezone. The value ranges from 1 to 12.
month(tsInMillis)month(tsInMillis, timeZoneId)
month(tsInMillis)
month(tsInMillis, timeZoneId)
select month(1633046399000, 'UTC') AS month FROM ignoreMe
select month(1633046399000, 'CET') AS month FROM ignoreMe
9
10