Skip to content

Returns the first day of the ISO year for a date or a date with time (timestamp/datetime).

func.to_start_of_iso_year(<expr>)
func.to_start_of_iso_year('2023-11-12 09:38:18.165575')
┌────────────────────────────────────────────────────────────────┐
│ func.to_start_of_iso_year('2023-11-12 09:38:18.165575') │
│ Date │
├────────────────────────────────────────────────────────────────┤
2023-01-02
└────────────────────────────────────────────────────────────────┘
TO_START_OF_ISO_YEAR(<expr>)
ArgumentsDescription
<expr>date/timestamp

DATE, returns date in “YYYY-MM-DD” format.

SELECT
to_start_of_iso_year('2023-11-12 09:38:18.165575')
┌────────────────────────────────────────────────────┐
│ to_start_of_iso_year('2023-11-12 09:38:18.165575') │
Date
├────────────────────────────────────────────────────┤
2023-01-02
└────────────────────────────────────────────────────┘