sql:in和exists的區別(zt)
in和exists
in 是把外表和內錶作hash 連線,而exists是對外表作loop迴圈,每次loop迴圈再對內表進行查詢。
一直以來認為exists比in效率高的說法是不準確的。
如果查詢的兩個表大小相當,那麼用in和exists差別不大。
全文:
in和exists
in 是把外表和內錶作hash 連線,而exists是對外表作loop迴圈,每次loop迴圈再對內表進行查詢。
一直以來認為exists比in效率高的說法是不準確的。
如果查詢的兩個表大小相當,那麼用in和exists差別不大。
如果兩個表中乙個較小,乙個是大表,則子查詢表大的用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' or name='wang' or name='zhao'
的結果是相同的。
SQL in與exists查詢的區別
先來簡單看看兩個查詢 in 等價於 1 select sno from student where s in 男 先執行in中的查詢 2 select sno,cno,grade from sc where sc.sno student.sno 以上in 中的查詢只執行一次,它查詢出student中...
sql in 和 exist的區別
詳見 select from a where id in select id from b 以上查詢使用了in語句,in 只執行一次,它查出b表中的所有id欄位並快取起來.之後,檢查a表的id是否與b表中的id相等,如果相等則將a表的記錄加入結果集中,直到遍歷完a表的所有記錄.它的查詢過程類似於以下...
sql in 和 exist的區別
詳見 url select from a where id in select id from b 以上查詢使用了in語句,in 只執行一次,它查出b表中的所有id欄位並快取起來.之後,檢查a表的id是否與b表中的id相等,如果相等則將a表的記錄加入結果集中,直到遍歷完a表的所有記錄.它的查詢過程類...