If I have a query like:
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
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