I need to get rows from table A where the key is not present in table B. Something like
SELECT a.val1, a.val2, a.key, b.val FROM a LEFT OUTER JOIN b ON (a.key=b.key) WHERE b.val IS NULL seems to achieve the desired result, but is there a better way?..
