有乙個查詢如下:
1 select c.customerid, companyname
2 from customers c
3 where exists(
4 select orderid from orders o
5 where o.customerid = cu.customerid)
這裡面的exists是如何運作呢?子查詢返回的是orderid欄位,可是外面的查詢要找的是customerid和companyname欄位,這兩個字段肯定不在orderid裡面啊,這是如何匹配的呢?
exists用於檢查子查詢是否至少會返回一行資料,該子查詢實際上並不返回任何資料,而是返回值true或false。
exists 指定乙個子查詢,檢測行的存在。語法:exists subquery。引數 subquery 是乙個受限的 select 語句 (不允許有 compute 子句和 into 關鍵字)。結果型別為 boolean,如果子查詢包含行,則返回 true。
在子查詢中使用 null 仍然返回結果集
這個例子在子查詢中指定 null,並返回結果集,通過使用 exists 仍取值為 true。
1 select categoryname
2 from categories
3 where exists (select null)
4 order by categoryname asc
比較使用 exists 和 in 的查詢
這個例子比較了兩個語義類似的查詢。第乙個查詢使用 exists 而第二個查詢使用 in。注意兩個查詢返回相同的資訊。
1 select distinct pub_name
2 from publishers
3 where exists
4 (select *
5 from titles
6 where pub_id = publishers.pub_id
7 and type = 'business')
1 select distinct pub_name
2 from publishers
3 where pub_id in
4 (select pub_id
5 from titles
6 where type = 'business')
比較使用 exists 和 = any 的查詢
本示例顯示查詢與出版商住在同一城市中的作者的兩種查詢方法:第一種方法使用 = any,第二種方法使用 exists。注意這兩種方法返回相同的資訊。
1 select au_lname, au_fname
2 from authors
3 where exists
4 (select *
5 from publishers
6 where authors.city = publishers.city)
1 select au_lname, au_fname
2 from authors
3 where city = any
4 (select city
5 from publishers)
比較使用 exists 和 in 的查詢
本示例所示查詢查詢由位於以字母 b 開頭的城市中的任一出版商出版的書名:
1 select title
2 from titles
3 where exists
4 (select *
5 from publishers
6 where pub_id = titles.pub_id
7 and city like 'b%')
1 select title
2 from titles
3 where pub_id in
4 (select pub_id
5 from publishers
6 where city like 'b%')
使用 not exists
not exists 的作用與 exists 正相反。如果子查詢沒有返回行,則滿足 not exists 中的 where 子句。本示例查詢不出版商業書籍的出版商的名稱:
1 select pub_name
2 from publishers
3 where not exists
4 (select *
5 from titles
6 where pub_id = publishers.pub_id
7 and type = 'business')
8 order by pub_name
又比如以下 sql 語句:
1 select distinct 姓名 from xs
2 where not exists (
3 select * from kc
4 where not exists (
5 select * from xs_kc
6 where 學號=xs.學號 and 課程號=kc.課程號
7 )
把最外層的查詢xs裡的資料一行一行的做裡層的子查詢。
中間的 exists 語句只做出對上一層的返回 true 或 false,因為查詢的條件都在 where 學號=xs.學號 and 課程號=kc.課程號這句話裡。每乙個 exists 都會有一行值。它只是告訴一層,最外層的查詢條件在這裡成立或都不成立,返回的時候值也一樣回返回上去。直到最高層的時候如果是 true(真)就返回到結果集。為 false(假)丟棄。
1 where not exists
2 select * from xs_kc
3 where 學號=xs.學號 and 課程號=kc.課程號
這個 exists 就是告訴上一層,這一行語句在我這裡不成立。因為他不是最高層,所以還要繼續向上返回。
select distinct 姓名 from xs where not exists (這裡的 exists 語句收到上乙個為 false 的值。他在判斷一下,結果就是為 true(成立),由於是最高層所以就會把這行的結果(這裡指的是查詢條件)返回到結果集。
幾個重要的點:
最裡層要用到的醒詢條件的表比如:xs.學號、kc.課程號等都要在前面的時候說明一下select * from kc,select distinct 姓名 from xs
不要在太注意中間的exists語句.
把exists和not exists巢狀時的返回值弄明白
MySQL exists的用法介紹
有乙個查詢如下 1selectc.customerid,companyname 2fromcustomers c 3whereexists 4selectorderidfromorders o 5whereo.customerid cu.customerid 這裡面的exists是如何運作呢?子查詢...
MySQL exists的用法介紹
有乙個查詢如下 select c.customerid,companyname from customers c where exists select orderid from orders o where o.customerid cu.customerid 這裡面的exists是如何運作呢?子...
Mysql exists用法小記
exists用於檢查子查詢是否至少會返回一行資料,該子查詢實際上並不返回任何資料,而是返回值true或false。exists 指定乙個子查詢,檢測行的存在。語法 exists subquery。引數 subquery 是乙個受限的 select 語句 不允許有 compute 子句和 into 關...