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 SQL  Databricks Runtime
 Databricks Runtime
Returns the year component of expr. This function is a synonym for extract(YEAR FROM expr).
Note
When extracting fields from a TIMESTAMP (TIMESTAMP_LTZ), the result is based on the session timezone.
Syntax
year(expr)
Arguments
- expr: A- DATE,- TIMESTAMP, or- TIMESTAMP_NTZexpression.
Returns
An INTEGER.
Examples
> SELECT year('2016-07-30');
 2016