|
最初由 kezizi 发布
[B]The outer join, which I mentioned in my original"method 2", should be write like this
-------------------------------------
select * from a, b
where a.c = b.c +
and b.c is null
-------------------------------------
the above outer join returns same result as
select * from a where a.c not in (select c from b)
-------------------------------------
please let us know the performance. I guess it will not be much faster than the 3 queries [/B]
I will test it ! Give me times ! |
|