dayOfWeek
This section contains reference documentation for the dayOfWeek function.
Was this helpful?
This section contains reference documentation for the dayOfWeek function.
Returns the day of the week from the given epoch millis in UTC timezone. The value ranges from 1(Monday) to 7(Sunday).
dayOfWeek(tsInMillis)
dayOfWeek(tsInMillis, timeZoneId)
dow(tsInMillis)
dow(tsInMillis, timeZoneId)
select dayOfWeek(1639351800000) AS dayOfWeek
FROM ignoreMe7
select dayOfWeek(1639351800000, 'CET') AS dayOfWeek
FROM ignoreMe1
select dow(1639351800000) AS dayOfWeek
FROM ignoreMe7
select dow(1639351800000, 'CET') AS dayOfWeek
FROM ignoreMe1
Was this helpful?
Was this helpful?

