If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
SELECT t1.f1 from t1 where not exists (select t2.f1 from t2)
How rewrite the above query without 'exist' or 'in'? In the other word, use only 'Inner' and 'Outer join' because MySQL version does not recognize 'exists' and 'in'?