SELECT DISTINCT table1.field1
FROM table1 LEFT OUTER JOIN
table2 ON table1.field1 = table2.field1
WHERE table2.field1 IS NULL
This should give you everything from table1 that did not have a match in table2.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.