brendanDATA
Technical User
I am trying to insert records where a field has a certain value AND the date is after 11/13/2004. When I run the query, it seems to ignore the DATE and just inserts all of the records where the other field has the certain value. The query currently looks like this:
INSERT INTO New_table
SELECT [01_10_05complete].*
FROM 01_10_05complete
WHERE (((([01_10_05complete].Date_Added) > 11/13/2004)) and (([01_10_05complete].Venue_Type)="value"));
Can someone help with the date syntax? The column is formatted in MM/DD/YYYY right now.
INSERT INTO New_table
SELECT [01_10_05complete].*
FROM 01_10_05complete
WHERE (((([01_10_05complete].Date_Added) > 11/13/2004)) and (([01_10_05complete].Venue_Type)="value"));
Can someone help with the date syntax? The column is formatted in MM/DD/YYYY right now.