maverickmonster
Programmer
I have made this SQL query and need help finishing it off, I want to make the table report_details with all the data from detail table where the table today field today is the same as table details from target completion date.
Code:
INSERT INTO report_details
SELECT *
FROM details
WHERE [today]=[details]![target completion date];
Thanks in advance
Maverickmonster