YEAR function (ODBC compatible)
Syntax
YEAR ( date_expression )
Description
The scalar function YEAR returns the year as a short integer value in the range of 0 - 9999.
Example
SELECT *
FROM orders
WHERE YEAR (order_date) = 1992 ;
Notes
TOCIndex