TO_DAY_OF_YEAR (Lakehouse v1)
Convert a date or date with time (timestamp/datetime) to a UInt16 number containing the number of the day of the year (1-366).
Analyze Syntax
Section titled “Analyze Syntax”func.to_day_of_year(<expr>)Analyze Examples
Section titled “Analyze Examples”func.to_day_of_week('2023-11-12 09:38:18.165575')
┌────────────────────────────────────────────────────┐│ func.to_day_of_year('2023-11-12 09:38:18.165575') ││ UInt8 │├────────────────────────────────────────────────────┤│ 316 │└────────────────────────────────────────────────────┘SQL Syntax
Section titled “SQL Syntax”TO_DAY_OF_YEAR(<expr>)Arguments
Section titled “Arguments”| Arguments | Description |
|---|---|
<expr> | date/timestamp |
Return Type
Section titled “Return Type”SMALLINT
SQL Examples
Section titled “SQL Examples”SELECT to_day_of_year('2023-11-12 09:38:18.165575')
┌──────────────────────────────────────────────┐│ to_day_of_year('2023-11-12 09:38:18.165575') ││ UInt16 │├──────────────────────────────────────────────┤│ 316 │└──────────────────────────────────────────────┘