dayofyear function

Applies to: check marked yes Databricks SQL check marked yes Databricks Runtime

Returns the day of year of the date or timestamp. This function is a synonym for extract(DAY FORM expr).

Syntax

dayofyear(expr)

Arguments

  • expr: A DATE or TIMESTAMP expression.

Returns

An INTEGER.

Examples

> SELECT dayofyear('2016-04-09');
 100