Select query with date condition

calendar_today Asked Nov 15, 2010
thumb_up 17 upvotes
history Updated April 16, 2026

Question posted 2010 · +6 upvotes

I would like to retrieve the records in certain dates after d/mm/yyyy, or after d/mm/yyyy and before d/mm/yyyy, how can I do it ?

SELECT date
FROM table
WHERE date > 1/09/2008;

and

SELECT date
FROM table
WHERE date > 1/09/2008;
AND date < 1/09/2010

It doesn’t work.

Accepted answer +17 upvotes

Be careful, you’re unwittingly asking “where the date is greater than one divided by nine, divided by two thousand and eight”.

Put # signs around the date, like this #1/09/2008#

Top ms-access Q&A (6)

+17 upvotes ranks this answer #7 out of 55 ms-access solutions on this site — top 13%.