dayofyear
function
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)
.
nota
When extracting fields from a TIMESTAMP
(TIMESTAMP_LTZ
), the result is based on the session timezone.
Syntax
dayofyear(expr)
Arguments
expr
: ADATE
,TIMESTAMP
, orTIMESTAMP_NTZ
expression.
Returns
An INTEGER
.
Examples
SQL
> SELECT dayofyear('2016-04-09');
100