hi, i have a column called date_filed where data is of the format: 16/02/1994
i would like to run a simple query to pull all the records for year 1994
this is what i have, (also tried IN instead of contain which didn't work:
SELECT *
FROM tbl
WHERE (date_filed CONTAIN '1994')
thanks
i would like to run a simple query to pull all the records for year 1994
this is what i have, (also tried IN instead of contain which didn't work:
SELECT *
FROM tbl
WHERE (date_filed CONTAIN '1994')
thanks