mysql中in和exists的使用場景

2021-10-05 00:23:20 字數 653 閱讀 2188

場景一:in 和 exists

select *

from tablein where exists

(select bid

from tableex where bname

=tablein.

aname

)select *

from tablein where aname

in(select bname

from tableex)

如果子查詢得出的結果集記錄較少,主查詢中的表較大且又有索引時應該用in, 反之如果外層的主查詢記錄較少,子查詢中的表大,又有索引時使用exists。

場景二:null

select *

from tablein where exists

(select null

)等同於: select *

from tablein

in不對null進行處理,而exists對null處理

場景三:not in 和not exists

如果查詢語句使用了not in 那麼內外表都進行全表掃瞄,沒有用到索引;而not extsts 的子查詢依然能用到表上的索引。所以無論那個表大,用not exists都比not in要快。

MySql中in和exists效率

詳見 mysql中的in語句是把外表和內錶作hash 連線,而exists語句是對外表作loop迴圈,每次loop迴圈再對內表進行查詢。一直大家都認為exists比in語句的效率要高,這種說法其實是不準確的。這個是要區分環境的。如果查詢的兩個表大小相當,那麼用in和exists差別不大。如果兩個表中...

MySQL中的in和exists區別

in和exists的區別分析 select from a where id in select id from b select from a where exists select 1from b where a.id b.id 對於以上兩種情況,in是在記憶體裡遍歷比較,而exists需要查詢資...

MySQL中 in和exists的區別

a表 100條資料 b 10條資料 select from a where id in select aid from b 先執行括號裡面的查詢,然後執行外面,總共需要查詢的次數的 b 1 11次 需要注意的是 括號裡面的查詢會快取到記憶體中 select from a where exists s...