NOT In the version (slowly but surely):
SELECT con_number FROM TableB WHERE con_number NOT IN (SELECT con_number FROM tableA);
experimental version (I don’t know if it is faster, just try):
SELECT B.con_number, MAX(A.con_number) AS check FROM tableB B LEFT JOIN tableA A ON B.con_number = A.con_number GROUP BY B.con_number HAVING check IS NULL;
Note. Both should be pretty standard SQL, I don't know any specific ms-access functions
soulmerge
source share