in和exists
in 是把外表和內錶作hash 連線,而exists是對外表作loop迴圈,每次loop迴圈再對內表進行查詢。
in (parm1,parm2...), parm是有個數限制的
如果兩個表中乙個較小,乙個是大表,則子查詢表大的用exists,子查詢錶小的用in:
例如:表a(小表),表b(大表)
1:select * from a where cc in (select cc from b)效率低,用到了a表上cc列的索引;
select * from a where exists(select cc from b where cc=a.cc)效率高,用到了b表上cc列的索引。
相反的2:select * from b where cc in (select cc from a)效率高,用到了b表上cc列的索引;
select * from b where exists(select cc from a where cc=b.cc)效率低,用到了a表上cc列的索引。
not in 和not exists如果查詢語句使用了not in 那麼內外表都進行全表掃瞄,沒有用到索引;而not extsts 的子查詢依然能用到表上的索引。所以無論那個表大,用not exists都比not in要快。
in 與 =的區別
select name from student where name in ('zhang','wang','li','zhao');
與select name from student where name='zhang' or name='li' orname='wang' or name='zhao'
的結果是相同的。
詳解sql中exists和in的語法與區別
exists和in的區別很小,幾乎可以等價,但是sql優化中往往會注重效率問題,今天咱們就來說說exists和in的區別。exists語法 select from table whealqkydre exists 子查詢 將主查詢的結果,放到子查詢結果中進行校驗,如子查詢有資料,則校驗成功,那麼符合...
關於oracle中in和exists的區別
一般來說,這兩個是用來做兩張 或更多 表聯合查詢用的,in是把外表和內錶作hash 連線,而exists 是對外表作loop 迴圈,假設有a b兩個表,使用時是這樣的 1 select from a where id in select id from b 使用in 2 select from a ...
關於oracle中in和exists的區別
本文 select from a where id in select id from b 以上查詢使用了in語句,in 只執行一次,它查出b表中的所有id欄位並快取起來.之後,檢查a表的id是否與b表中的id相等,如果相等則將a表的記錄加入結果集中,直到遍歷完a表的所有記錄.它的查詢過程類似於以下...