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 Runtime
Returns the month component of the timestamp in expr
. This function is a synonym for extract(MONTH FROM expr)
.
Syntax
month(expr)
Arguments
expr
: An TIMESTAMP expression or a STRING of a valid timestamp format.
Returns
An INTEGER.
Examples
> SELECT month('2016-07-30');
7