I need help with date queries in MS Access 2007.
How do I show all data between date:01/06/2010 time:10:51 and date:13/07/2010 time:22:30?
date:01/06/2010 time:10:51
date:13/07/2010 time:22:30
I have not used MS Access for years, so this is only from memory: Access uses # instead of ' for date values. And you need to use ISO format:
WHERE datecolumn >= #2010-06-01 10:51# AND datecolumn <= #2010-07-13 22:30#