I am working on determining records that are under or over 3 days old. I just can't seem to get the syntax for Access correct.
Here is my SQL query for greater than 3 days:
I just can't seem to work it out for Access which doesn't recognize the "getdate" function.
Thanks
gbnz
Here is my SQL query for greater than 3 days:
Code:
SELECT *
FROM
AFETaskView
WHERE
Created < DATEADD(day, -3, getdate())
Thanks
gbnz