I have the following query
SELECT * FROM Orders WHERE OrderDate Between #4-9-2006# And #4-10-2006#
I expect rows with OrderDate = 5-9-2006 to be returned, however they are not.
Apparently the date formats are interpretted as mm-dd-yyyy instead of dd-mm-yyyy.
Can I set the default date format or is there another solution?
SELECT * FROM Orders WHERE OrderDate Between #4-9-2006# And #4-10-2006#
I expect rows with OrderDate = 5-9-2006 to be returned, however they are not.
Apparently the date formats are interpretted as mm-dd-yyyy instead of dd-mm-yyyy.
Can I set the default date format or is there another solution?