I have Table1 with FieldA and Table2 with FieldA. I would like to query Table1 for all records that DO NOT exist in FieldA of Table2. I have tried the following but it doesn't filter correctly. Any suggestions?? Thx!!
SELECT Table1.FieldA FROM Table1, Table2 WHERE Table1.FieldA <> Table2.Field
SELECT Table1.FieldA FROM Table1, Table2 WHERE Table1.FieldA <> Table2.Field