Exist 與in 的區別

2021-08-30 14:52:15 字數 1802 閱讀 2390

exist是乙個存在判斷,in是乙個集合運算子,

a in

這個運算中,前面是乙個元素,後面是乙個集合,集合中的元素型別是和前面的元素一樣的.

而exists是乙個存在判斷,如果後面的查詢中有結果,則exists為真,否則為假.

in 運算用在語句中,它後面帶的select 一定是選乙個字段,而不是select *.

比如說你要判斷某班是否存在乙個名為"小明"的學生,你可以用in 運算:

"小明" in (select sname from student)

這樣(select sname from student) 返回的是乙個全班姓名的集合,in用於判斷"小明"是否為此集合中的乙個資料;

同時,你也可以用exists語句:

exists (select * from student where sname="小明")

這兩個函式數是差不多的, 但是由於優化方案的不同, 通常not exists要比not in 要快, 因為not exists可以使用結合演算法而not in 就不行了,而exists則不如in快, 因為這時候in可能更多的使用結合演算法.

select * from 表a where exists(select * from 表b where 表b.id=表a.id)

這句相當於

select * from 表a where id in (select id from 表b)

對於表a的每一條資料,都執行select * from 表b where 表b.id=表a.id的存在性判斷,如果表b中存在表a當前行相同的id,則exists為真,該行顯示,否則不顯示

exits適合內小外大的查詢(所謂的內小外大:子查詢得到的結果比較小,而主查詢的結果要求比較大),in適合內大外小的查詢

in 確定給定的值是否與子查詢或列表中的值相匹配。

exists

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

比較使用 exists 和 in 的查詢

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

use pubs

go select 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

go select 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)

exits 相當於存在量詞:表示集合存在,也就是集合不為空只作用乙個集合.例如 exist p 表示p不空時為真; not exist p表示p為空時 為真 in表示乙個標量和一元關係的關係。例如:s in p表示當s與p中的某個值相等時 為真; s not in p 表示s與p中的每乙個值都不相等時 為真

In與Exist的區別

in 遍歷 exists 檢索到滿足條件即退出 not exists 檢索到不滿足條件即退出 本質區別 exists 由於exist屬於外驅動,故會利用索引來檢索資料 in 則屬於內驅動 故不能利用索引檢索資料 其中,in和not in類似全表掃瞄,效率低,一般用 exist和notexist代替其...

exist與in的區別

對於in 和 exists的效能區別 如果子查詢得出的結果集記錄較少,主查詢中的表較大且又有索引時應該用in,反之如果外層的主查詢記錄較少,子查詢中的表大,又有索引時使用exists。其實我們區分in和exists主要是造成了驅動順序的改變 這是效能變化的關鍵 如果是exists,那麼以外層表為驅動...

SQL server的Exist與in區別

exists 將外查詢表的每一行,代入內查詢作為檢驗,如果內查詢返回的結果取非空值,則exists子句返回true,這一行行可作為外查詢的結果行,否則不能作為結果。區別 in表是外邊和內錶進行hash連線,是先執行子查詢。exists是對外表進行迴圈,然後在內表進行查詢。適用範圍 當查詢字段進行了索...