in和exists的一些區別

rainbowbridg發表於2007-06-15

注意: 下面這種情況從vcard表裡返回的資料多,這時用exists效率高
select *
from day_onlinenum o where not exists (select username from vcard v where v.username = o.username);

下面day_onlinenum返回的資料少,所以用in效率高
select count(*)
from vcard where username in (select username from day_onlinenum)

[@more@]

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/7916042/viewspace-919004/,如需轉載,請註明出處,否則將追究法律責任。

相關文章