Can anyone tell me what correct code is to run a query to retreive
all records before a certain date.
IT will start:
SELECT * FROM database1 WHERE Date =
I am not sure what to put at the end to say date after a certain date.
tia
Hi tia,
Try:
SELECT * FROM database1 WHERE Date > '2006-06-15'
JC