Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Applies to: Databricks SQL
Databricks Runtime
Returns the day of year of the date or timestamp. This function is a synonym for extract(DAY FORM expr)
.
dayofyear(expr)
expr
: A DATE or TIMESTAMP expression.
An INTEGER.
> SELECT dayofyear('2016-04-09');
100