year
function
Applies to: Databricks SQL
Databricks Runtime
Returns the year component of expr
. This function is a synonym for extract(YEAR FROM expr)
.
nota
When extracting fields from a TIMESTAMP
(TIMESTAMP_LTZ
), the result is based on the session timezone.
Syntax
year(expr)
Arguments
expr
: ADATE
,TIMESTAMP
, orTIMESTAMP_NTZ
expression.
Returns
An INTEGER
.
Examples
SQL
> SELECT year('2016-07-30');
2016