sql中exist與in的區別

2021-05-25 10:26:57 字數 1783 閱讀 7740

in 和 exists也是很好區別的.

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中的每乙個值都不相等時 為真

sql中exist與in的區別

in 和 exists也是很好區別的.in 是乙個集合運算子.a in 這個運算中,前面是乙個元素,後面是乙個集合,集合中的元素型別是和前面的元素一樣的.而exists是乙個存在判斷,如果後面的查詢中有結果,則exists為真,否則為假.in 運算用在語句中,它後面帶的select 一定是選乙個字段...

sql中exist與in 的區別

in 和 exists也是很好區別的.in 是乙個集合運算子.a in 這個運算中,前面是乙個元素,後面是乙個集合,集合中的元素型別是和前面的元素一樣的.而exists是乙個存在判斷,如果後面的查詢中有結果,則exists為真,否則為假.in 運算用在語句中,它後面帶的select 一定是選乙個字段...

sql中in和exist語句的區別?

in和exists in 是把外表和內錶作hash 連線,而exists是對外表作loop迴圈,每次loop迴圈再對內表進行查詢。如果兩個表中乙個較小,乙個是大表,則子查詢表大的用exists,子查詢錶小的用in 例如 表a 小表 表b 大表 1 select from a where cc in ...