This seems like a straight forward function but I don't quite know how to call the current date function in the Access SQL query.
SELECT *
FROM table
WHERE sysdate BETWEEN '4/30/02' AND '5/1/03'
(sysdate: the current date function (Oracle current date))
TIA,
D
SELECT *
FROM table
WHERE sysdate BETWEEN '4/30/02' AND '5/1/03'
(sysdate: the current date function (Oracle current date))
TIA,
D