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).
nota
When extracting fields from a TIMESTAMP (TIMESTAMP_LTZ), the result is based on the session timezone.
Syntax
month(expr)
Arguments
- expr: An- TIMESTAMP,- TIMESTAMP_NTZexpression, or a- STRINGof a valid timestamp format.
Returns
An INTEGER.
Examples
SQL
> SELECT month('2016-07-30');
 7