I need help with this query…
SELECT FIRST_NAME, LAST_NAME, test.EMAIL
FROM test
INNER JOIN suppression ON suppression.EMAIL = test.EMAIL
AND NOT EXISTS (select * from suppression)
I would like all records from table “test” where table “suppression” does not contain like records.
use
LEFT JOINTo fully gain knowledge about joins, kindly visit the link below: