month
function
Applies to: Databricks SQL
Databricks Runtime
Returns the month component of the timestamp in expr
. This function is a synonym for extract(MONTH FROM expr)
.
month(expr)
expr
: An TIMESTAMP expression or a STRING of a valid timestamp format.
An INTEGER.
> SELECT month('2016-07-30');
7