Hi,
Can anyone suggest a better way to write this query? I only want to find email addresses in table "a" if they are not in table "b".
SELECT a.email
FROM a, b
WHERE a.email != b.email
LIMIT 0 , 30
Cheers in advance.
CptnChainsaw
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.