DAYOFMONTH function (ODBC compatible)
Syntax
DAYOFMONTH ( date_expression )
Description
The scalar function DAYOFMONTH returns the day of the month in the argument as a short integer value in the range of 1 - 31.
Example
SELECT *
FROM orders
WHERE DAYOFMONTH (order_date) = 14 ;
Notes