MONTH
Returns the month portion of the specified date as an integer.
Behavior Type
- Immutable if the
specified date is a
TIMESTAMP,DATE,VARCHARorINTERVAL - Stable if the specified date is a
TIMESTAMPTZ
Syntax
MONTH ( date )
Parameters
| date |
The date to process, one of the following data types: |
Examples
In the following examples, Vertica returns the month portion of the specified string. For example, '6-9' represent September 6.
=> SELECT MONTH('6-9');
MONTH
-------
9
(1 row)
=> SELECT MONTH (TIMESTAMP 'sep 22, 2011 12:34');
MONTH
-------
9
(1 row)
=> SELECT MONTH(INTERVAL '2-35' year to month);
MONTH
-------
11
(1 row)