Viewing 2 posts - 1 through 2 (of 2 total)
Hi Bojidar,
why do you claim this would be better:
SELECT *
FROM t1 a
LEFT JOIN t2 b ON a.f1=b.f1
WHERE b.f1 IS NULL
You didn't give any proof. Did you examine what the...
April 24, 2007 at 3:53 am
#702095
What you wanted to show is a so-called exception join. But this is not a good way:
select * from t1
where t1.f1 not in (select t2.f1 from t2)
Exception joins should better...
April 24, 2007 at 1:03 am
#702075