Example A
SELECT column_name(s) FROM table1 LEFT JOIN table2 ON table1.key = table2.key WHERE table2.key IS NULL;
Example B
SE