I have two tables with a single key column. Keys in table a are subset of all keys in table b. I need to select keys from table b that are NOT in table a.
Here is a
Or you can try
SELECT a.key FROM a LEFT ANTI JOIN b ON a.key = b.key