SQL中IN和EXISTS用法的區別

2022-03-28 10:37:34 字數 2303 閱讀 2614

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確定給定的值是否與子查詢或列表中的值相匹配。

exists

指定乙個子查詢,檢測行的存在。

比較使用 exists 和 in 的查詢

這個例子比較了兩個語義類似的查詢。第乙個查詢使用 exists 而第二個查詢使用 in。注意兩個查詢返回相同的資訊。

use pubs

goselect distinct pub_name

from publishers

where exists

(select *

from titles

where pub_id = publishers.pub_id

and type = 'business')

go-- or, using the in clause:

use pubs

goselect distinct pub_name

from publishers

where pub_id in

(select pub_id

from titles

where type = 'business')

go下面是任一查詢的結果集:

pub_name

----------------------------------------

algodata infosystems

new moon books

(2 row(s) affected)

此外 not in

select distinct md001 from bommd where md001 not in (select mc001 from bommc)

not exists,exists的用法跟in不一樣,一般都需要和子表進行關聯,而且關聯時,需要用索引,這樣就可以加快速度

select distinct md001 from bommd where not exists (select mc001 from bommc where bommc.mc001 = bommd.md001)

exists是用來判斷是否存在的,當exists(查詢)中的查詢存在結果時則返回真,否則返回假。not exists則相反。

exists做為where 條件時,是先對where 前的主查詢詢進行查詢,然後用主查詢的結果乙個乙個的代入exists的查詢進行判斷,如果為真則輸出當前這一條主查詢的結果,否則不輸出。

SQL中IN和EXISTS用法

not in select distinct md001 from bommd where md001 not in select mc001 from bommc not exists,exists的用法跟in不一樣,一般都需要和子表進行關聯,而且關聯時,需要用索引,這樣就可以加快速度 selec...

SQL中IN和EXISTS用法的區別

not in select distinct md001 from bommd where md001 not in select mc001 from bommc not exists,exists的用法跟in不一樣,一般都需要和子表進行關聯,而且關聯時,需要用索引,這樣就可以加快速度 selec...

SQL中IN和EXISTS用法的區別

結論 in 適合b錶比a表資料小的情況 exists 適合b錶比a表資料大的情況 當a表資料與b表資料一樣大時,in與exists效率差不多,可任選乙個使用.select from a where id in select id from b 以上查詢使用了in語句,in 只執行一次,它查出b表中的...