I want to write a SQL statement that brings up records between 2 dates. I've tried the following syntax but it doesn't work. Can somebody tell my what is wrong?
SELECT ID, Products, OrderDate FROM tblOrders
WHERE OrderDate BETWEEN #01/01/2002# AND #31/12/2002#
ORDER BY OrderDate;
Live fast, die young and leave a beautiful corpse behind.
SELECT ID, Products, OrderDate FROM tblOrders
WHERE OrderDate BETWEEN #01/01/2002# AND #31/12/2002#
ORDER BY OrderDate;
Live fast, die young and leave a beautiful corpse behind.