MONTH function (ODBC compatible)
Syntax
MONTH ( date_expression )
Description
The scalar function MONTH returns the month in the year specified by the argument as a short integer value in the range of 1 - 12.
Example
SELECT *
FROM orders
WHERE MONTH (order_date) = 6 ;
Notes