exists用於檢查子查詢是否至少會返回一行資料,該子查詢實際上並不返回任何資料,而是返回值true或false
有乙個查詢如下:
複製**
**如下:
select c.customerid, companyname
from customers c
where exists(
select orderid from orders o
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。
複製**
**如下:
select categoryname
from categories
where exists (select null)
order by categoryname asc
比較使用 exists 和 in 的查詢
這個例子比較了兩個語義類似的查詢。第乙個查詢使用 exists 而第二個查詢使用 in。注意兩個查詢返回相同的資訊。
複製**
**如下:
select distinct pub_name
from publishers
where exists
(select *
from titles
where pub_id = publishers.pub_id
and type = \'business\')
複製**
**如下:
select distinct pub_name
from publishers
where pub_id in
(select pub_id
from titles
where type = \'business\')
比較使用 exists 和 = any 的查詢
本示例顯示查詢與出版商住在同一城市中的作者的兩種查詢方法:第一種方法使用 = any,第二種方法使用 exists。注意這兩種方法返回相同的資訊。
複製**
**如下:
select au_lname, au_fname
from authors
where exists
(select *
from publishers
where authors.city = publishers.city)
複製**
**如下:
select au_lname, au_fname
from authors
where city = any
(select city
from publishers)
比較使用 exists 和 in 的查詢
本示例所示查詢查詢由位於以字母 b 開頭的城市中的任一出版商出版的書名:
複製**
**如下:
select title
from titles
where exists
(select *
from publishers
where pub_id = titles.pub_id
and city like \'b%\')
複製**
**如下:
select title
from titles
where pub_id in
(select pub_id
from publishers
where city like \'b%\')
使用 not exists
not exists 的作用與 exists 正相反。如果子查詢沒有返回行,則滿足 not exists 中的 where 子句。本示例查詢不出版商業書籍的出版商的名稱:
複製**
**如下:
select pub_name
from publishers
where not exists
(select *
from titles
where pub_id = publishers.pub_id
and type = \'business\')
order by pub_name
又比如以下 sql 語句:
複製**
**如下:
select distinct 姓名 from xs
where not exists (
select * from kc
where not exists (
select * from xs_kc
where 學號=xs.學號 and 課程號=kc.課程號
) 把最外層的查詢xs裡的資料一行一行的做裡層的子查詢。
中間的 exists 語句只做出對上一層的返回 true 或 false,因為查詢的條件都在 where 學號=xs.學號 and 課程號=kc.課程號這句話裡。每乙個 exists 都會有一行值。它只是告訴一層,最外層的查詢條件在這裡成立或都不成立,返回的時候值也一樣回返回上去。直到最高層的時候如果是 true(真)就返回到結果集。為 false(假)丟棄。
複製**
**如下:
where not exists
select * from xs_kc
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巢狀時的返回值弄明白
SQL中IN與EXISTS用法的區別
結論為 in 適合b錶比a表資料小的情況 exists 適合b錶比a表資料大的情況 當a表資料與b表資料一樣大時,in與exists效率差不多,可任選乙個使用.舉例 select from emp 基礎表 where empno 0 and exists select x from dept whe...
SQL中EXISTS的用法
比如在northwind資料庫中有乙個查詢為 select c.customerid,companyname from customers c where exists select orderid from orders o where o.customerid c.customerid 這裡面的...
SQL中EXISTS的用法
比如在northwind資料庫中有乙個查詢為 select c.customerid,companyname from customers c where exists select orderid from orders o where o.customerid c.customerid 這裡面的...