G
Guest
I have this criteria
WHERE (((tblImport_tmp.Model_No1) Not In (SELECT Model_No1 FROM tblHVAC)) AND ((tblImport_tmp.Manufacturer1) Not In (SELECT Manufacturer1 FROM tblHVAC)) AND ((tblImport_tmp.Model_No2) Not In (SELECT Model_No2 FROM tblHVAC)))
I want to append a record there all 3 conditions are met, namely the COMBINATION of Model_No1, Manufacturer1, AND Model_No2 do not exist in tblHVAC
In testing if the query worked properly, Model_No1 AND Manufacturer1 WERE IN tblHVAC but Model_No2 WAS NOT. Therefore, the query is supposed to append the record, however it is not appending anything. Is the sql criteria set up properly to append where all 3 conditions are met?
WHERE (((tblImport_tmp.Model_No1) Not In (SELECT Model_No1 FROM tblHVAC)) AND ((tblImport_tmp.Manufacturer1) Not In (SELECT Manufacturer1 FROM tblHVAC)) AND ((tblImport_tmp.Model_No2) Not In (SELECT Model_No2 FROM tblHVAC)))
I want to append a record there all 3 conditions are met, namely the COMBINATION of Model_No1, Manufacturer1, AND Model_No2 do not exist in tblHVAC
In testing if the query worked properly, Model_No1 AND Manufacturer1 WERE IN tblHVAC but Model_No2 WAS NOT. Therefore, the query is supposed to append the record, however it is not appending anything. Is the sql criteria set up properly to append where all 3 conditions are met?