DATEDIFF / MySQL Question
I have a query where I am trying to get all records from a data table (TIMELOG) that have happened (EVENTTIME) in the past 7 days or less.
The table name is TIMELOG and the field name is EVENTTIME.
I want all records where EVENTTIME is in the past 7 days or less.
SELECT * FROM TIMELOG
WHERE
#DateDiff("d",EVENTTIME,now())# < 7
I don't know why this doesn't work.
I get this error message
Variable EVENTTIME is undefined.
