D
davidstevans
Hi all,
I have the following MyTable:
ID SSN DATE
the date is in the form of 4/10/1970. Month, Day Year.
My question is it display the ID & SSN if date is older than 6
years. Here is my sql but I am not picking up all the records.
SELECT ID, SSNI from MyTable:
where MyTable.date < Date() - 3900
I came up with 3900 by multiplying 365(days) * 6(years).
thanks in advance for all your input
I have the following MyTable:
ID SSN DATE
the date is in the form of 4/10/1970. Month, Day Year.
My question is it display the ID & SSN if date is older than 6
years. Here is my sql but I am not picking up all the records.
SELECT ID, SSNI from MyTable:
where MyTable.date < Date() - 3900
I came up with 3900 by multiplying 365(days) * 6(years).
thanks in advance for all your input