year function

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

Returns the year component of expr.

Syntax

year(expr)

Arguments

  • expr: A DATE or TIMESTAMP expression.

Returns

An INTEGER.

This function is a synonym for extract(YEAR FROM expr).

Examples

> SELECT year('2016-07-30');
 2016