Hi Guys,
I have a table called 'Monitors' one of the colums is a date and i want to return values with dates more than 6 months old.
i have this so far
SELECT *
FROM Monitors
WHERE DateDiff("m", #Date()#,#Household.date#) > 6;
what am i doing wrong here.
Thanx in advance
I have a table called 'Monitors' one of the colums is a date and i want to return values with dates more than 6 months old.
i have this so far
SELECT *
FROM Monitors
WHERE DateDiff("m", #Date()#,#Household.date#) > 6;
what am i doing wrong here.
Thanx in advance