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