Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 444 Bytes

File metadata and controls

33 lines (24 loc) · 444 Bytes
description
This section contains reference documentation for the year function.

year

Returns the year from the given epoch millis in UTC timezone.

Signature

year(tsInMillis)

year(tsInMillis, timeZoneId)

Usage Examples

select year(1609472186000) AS year
FROM ignoreMe
year
2021
select year(1609472186000, 'America/Toronto') AS year
FROM ignoreMe
year
2020