This section contains reference documentation for the hour function.
Last updated 1 year ago
Returns the hour of the day from the given epoch millis in UTC or specified timezone. The value ranges from 0 to 23.
hour(tsInMillis)hour(tsInMillis, timeZoneId)
hour(tsInMillis)
hour(tsInMillis, timeZoneId)
select hour(1639351800000) AS hour FROM ignoreMe
select hour(1639351800000, 'CET') AS hour FROM ignoreMe
23
0