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中的每乙個值都不相等時 為真
———————————————————————————————————————
請解釋 select * from tt t where not exists(select 1 from tt where 姓名=t.姓名 and 薪資》t.薪資)
q:
select * from tt t where not exists(select 1 from tt where 姓名=t.姓名 and 薪資》t.薪資 )
類似的句子用途很廣泛,可我想知道,這句話的邏輯或思路是怎樣的啊,恕我愚笨,不太明白。
或者解釋一下這句話,也可以。
a:
select * from tt t where not exists(select 1 from tt where 姓名=t.姓名 and 薪資》t.薪資 )
對於表tt的記錄進行掃瞄,
對於其中任一條記錄,查詢相同表中相同姓名的記錄,查詢其中是否存在薪資》當前記錄的薪資的記錄,如存在,掃瞄到的記錄即不符合條件,
如不存在,即掃瞄到的記錄符合where的條件,將作為查詢結果.
考慮最簡單的情況
姓名,薪資
chen,1000 --此記錄與全部chen記錄1000-4000比較,2000以上》1000存在查詢結果,此記錄不符合where 條件
chen,2000 --此記錄與全部chen記錄1000-4000比較,3000以上》2000存在查詢結果,此記錄不符合where 條件
chen,3000 --此記錄與全部chen記錄1000-4000比較,4000>3000存在查詢結果,此記錄不符合where 條件
chen,4000 --此記錄與全部chen記錄1000-4000比較,沒有》4000的記錄,此記錄符合where 條件
最後符合條件的記錄為
chen,4000
條件就是查詢相同姓名 沒有比查詢的記錄的薪資高的記錄
實際結果就是薪資的最大值.
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 ...