G
Guest
Current Attempt:
INSERT INTO New_Cntrs
SELECT Clean_Export LEFT JOIN New_Cntrs ON Clean_Export.Rec_Ident =
New_Cntrs.Cntr_Code
FROM Clean_Export
WHERE Clean_Export.Rec_Ident in (
SELECT Clean_Export.Rec_Ident
FROM Clean_Export LEFT JOIN Cntr_Checks ON Clean_Export.Rec_Ident =
Cntr_Checks.Cntr_Code
WHERE (((Cntr_Checks.Cntr_Code) Is Null))
);
The nested Select statement does return my wanted result. My issue is in
the Insert statement.
Here is my verbal explination:
If the Clean_Export.Rec_Ident field is present in the nested select query I
want to append it to New_Cntrs.Cntr_Code
INSERT INTO New_Cntrs
SELECT Clean_Export LEFT JOIN New_Cntrs ON Clean_Export.Rec_Ident =
New_Cntrs.Cntr_Code
FROM Clean_Export
WHERE Clean_Export.Rec_Ident in (
SELECT Clean_Export.Rec_Ident
FROM Clean_Export LEFT JOIN Cntr_Checks ON Clean_Export.Rec_Ident =
Cntr_Checks.Cntr_Code
WHERE (((Cntr_Checks.Cntr_Code) Is Null))
);
The nested Select statement does return my wanted result. My issue is in
the Insert statement.
Here is my verbal explination:
If the Clean_Export.Rec_Ident field is present in the nested select query I
want to append it to New_Cntrs.Cntr_Code