extracting year from date field?

viveleroi

Registered User.
Local time
Today, 14:35
Joined
Sep 6, 2004
Messages
20
If I have a query like:

Code:
SELECT * FROM someTable

and in the table I have a Date field (with Date format of course), how can I pull any record with a date in the year 2004?

The field in is MM/DD/YYYY format, how do I just get the YYYY out, and check to see if:

Code:
SELECT * FROM someTable WHERE dateField = 2004
 
Try:
Code:
SELECT * FROM someTable WHERE Year(dateField) = 2004;
 

Users who are viewing this thread

Back
Top Bottom