SQL中EXISTS的用法 SQL中EXISTS的用法

SQL中EXISTS的用法

好比在Northwind數據庫中有一個查詢爲
SELECT c.CustomerId,CompanyName FROM Customers c
WHERE EXISTS(
SELECT OrderID FROM Orders o WHERE o.CustomerID=c.CustomerID) 
這裏面的EXISTS是如何運做呢?子查詢返回的是OrderId字段,但是外面的查詢要找的是CustomerID和CompanyName字段,這兩個字段確定不在OrderID裏面啊,這是如何匹配的呢? 

EXISTS用於檢查子查詢是否至少會返回一行數據,該子查詢實際上並不返回任何數據,而是返回值True或False
EXISTS 指定一個子查詢,檢測 行 的存在。

語法: EXISTS subquery
參數: subquery 是一個受限的 SELECT 語句 (不容許有 COMPUTE 子句和 INTO 關鍵字)。
結果類型: Boolean 若是子查詢包含行,則返回 TRUE ,不然返回 FLASE 。html

例表A:TableIn 例表B:TableEx


(一). 在子查詢中使用 NULL 仍然返回結果集
select * from TableIn where exists(select null)
等同於: select * from TableIn
 
(二). 比較使用 EXISTS 和 IN 的查詢。注意兩個查詢返回相同的結果。
select * from TableIn where exists(select BID from TableEx where BNAME=TableIn.ANAME)
select * from TableIn where ANAME in(select BNAME from TableEx)

(三). 比較使用 EXISTS 和 = ANY 的查詢。注意兩個查詢返回相同的結果。
select * from TableIn where exists(select BID from TableEx where BNAME=TableIn.ANAME)
select * from TableIn where ANAME=ANY(select BNAME from TableEx)

NOT EXISTS 的做用與 EXISTS 正好相反。若是子查詢沒有返回行,則知足了 NOT EXISTS 中的 WHERE 子句。

結論:
EXISTS(包括 NOT EXISTS )子句的返回值是一個BOOL值。 EXISTS內部有一個子查詢語句(SELECT ... FROM...), 我將其稱爲EXIST的內查詢語句。其內查詢語句返回一個結果集。 EXISTS子句根據其內查詢語句的結果集空或者非空,返回一個布爾值。

一種通俗的能夠理解爲:將外查詢表的每一行,代入內查詢做爲檢驗,若是內查詢返回的結果取非空值,則EXISTS子句返回TRUE,這一行行可做爲外查詢的結果行,不然不能做爲結果。

分析器會先看語句的第一個詞,當它發現第一個詞是SELECT關鍵字的時候,它會跳到FROM關鍵字,而後經過FROM關鍵字找到表名並把表裝入內存。接着是找WHERE關鍵字,若是找不到則返回到SELECT找字段解析,若是找到WHERE,則分析其中的條件,完成後再回到SELECT分析字段。最後造成一張咱們要的虛表。
WHERE關鍵字後面的是條件表達式。條件表達式計算完成後,會有一個返回值,即非0或0,非0即爲真(true),0即爲假(false)。同理WHERE後面的條件也有一個返回值,真或假,來肯定接下來執不執行SELECT。
分析器先找到關鍵字SELECT,而後跳到FROM關鍵字將STUDENT表導入內存,並經過指針找到第一條記錄,接着找到WHERE關鍵字計算它的條件表達式,若是爲真那麼把這條記錄裝到一個虛表當中,指針再指向下一條記錄。若是爲假那麼指針直接指向下一條記錄,而不進行其它操做。一直檢索完整個表,並把檢索出來的虛擬表返回給用戶。EXISTS是條件表達式的一部分,它也有一個返回值(true或false)。

在插入記錄前,須要檢查這條記錄是否已經存在,只有當記錄不存在時才執行插入操做,能夠經過使用 EXISTS 條件句防止插入重複記錄。
INSERT INTO TableIn (ANAME,ASEX) 
SELECT top 1 '張三', '男' FROM TableIn
WHERE not exists (select * from TableIn where TableIn.AID = 7)

EXISTS與IN的使用效率的問題,一般狀況下采用exists要比in效率高,由於IN不走索引,但要看實際狀況具體使用:
IN適合於外表大而內表小的狀況;EXISTS適合於外表小而內表大的狀況。spring

 

 

 

in、not in、exists和not exists的區別:數據庫

先談談in和exists的區別:
exists:存在,後面通常都是子查詢,當子查詢返回行數時,exists返回true。
select * from class where exists (select'x"form stu where stu.cid=class.cid)
當in和exists在查詢效率上比較時,in查詢的效率快於exists的查詢效率
exists(xxxxx)後面的子查詢被稱作相關子查詢, 他是不返回列表的值的.
只是返回一個ture或false的結果(這也是爲何子查詢裏是select 'x'的緣由 固然也能夠
post

select任何東西) 也就是它只在意括號裏的數據能不能查找出來,是否存在這樣的記錄。
其運行方式是先運行主查詢一次 再去子查詢裏查詢與其對應的結果 若是存在,返回ture則輸
url

出,反之返回false則不輸出,再根據主查詢中的每一行去子查詢裏去查詢.spa

執行順序以下:
1.首先執行一次外部查詢
2.對於外部查詢中的每一行分別執行一次子查詢,並且每次執行子查詢時都會引用外部查詢中當
3d

前行的值。
3.使用子查詢的結果來肯定外部查詢的結果集。
若是外部查詢返回100行,SQL   就將執行101次查詢,一次執行外部查詢,而後爲外部查詢返回
指針

的每一行執行一次子查詢。orm

in:包含
查詢和全部女生年齡相同的男生
select * from stu where sex='男' and age in(select age from stu where sex='女')
in()後面的子查詢 是返回結果集的,換句話說執行次序和exists()不同.子查詢先產生結果集,
而後主查詢再去結果集裏去找符合要求的字段列表去.符合要求的輸出,反之則不輸出.
htm


not in和not exists的區別:
not in 只有當子查詢中,select 關鍵字後的字段有not null約束或者有這種暗示時用not in,另外若是主查詢中表大,子查詢中的表小可是記錄多,則應當使用not in,
例如:查詢那些班級中沒有學生的,
select * from class where cid not in(select distinct cid from stu)
當表中cid存在null值,not in 不對空值進行處理
解決:select * from class

where cid not in

(select distinct cid from stu where cid is not null)


not in的執行順序是:是在表中一條記錄一條記錄的查詢(查詢每條記錄)符合要求的就返回結果集,不符合的就繼續查詢下一條記錄,直到把表中的記錄查詢完。也就是說爲了證實找不到,因此只能查詢所有記錄才能證實。並無用到索引。
not exists:若是主查詢表中記錄少,子查詢表中記錄多,並有索引。
例如:查詢那些班級中沒有學生的,
select * from class2

where not exists

(select * from stu1 where stu1.cid =class2.cid)


not exists的執行順序是:在表中查詢,是根據索引查詢的,若是存在就返回true,若是不存在就返回false,不會每條記錄都去查詢。
之因此要多用not exists,而不用not in,也就是not exists查詢的效率遠遠高與not in查詢的效率。

 

 

 實例:

exists,not exists的使用方法示例,須要的朋友能夠參考下。
 
學生表:create table student
(
 id number(8) primary key,
 name varchar2(10),deptment number(8)
)
選課表:create table select_course
(
  ID         NUMBER(8) primary key,
  STUDENT_ID NUMBER(8) foreign key (COURSE_ID) references course(ID),
  COURSE_ID  NUMBER(8) foreign key (STUDENT_ID) references student(ID)
)
課程表:create table COURSE
(
  ID     NUMBER(8) not null,
  C_NAME VARCHAR2(20),
  C_NO   VARCHAR2(10)
)
student表的數據:
        ID NAME            DEPTMENT_ID
---------- --------------- -----------
         1 echo                   1000
         2 spring                 2000
         3 smith                  1000
         4 liter                  2000
course表的數據:
        ID C_NAME               C_NO
---------- -------------------- --------
         1 數據庫               data1
         2 數學                 month1
         3 英語                 english1
select_course表的數據:
        ID STUDENT_ID  COURSE_ID
---------- ---------- ----------
         1    1         1
         2    1         2
         3    1         3
         4    2         1
         5    2         2
         6    3         2
1.查詢選修了全部課程的學生id、name:(即這一個學生沒有一門課程他沒有選的。)
分析:若是有一門課沒有選,則此時(1)select * from select_course sc where sc.student_id=ts.id 
and sc.course_id=c.id存在null,
這說明(2)select * from course c 的查詢結果中確實有記錄不存在(1查詢中),查詢結果返回沒有選的課程,
此時select * from t_student ts 後的not exists 判斷結果爲false,不執行查詢。
SQL> select * from t_student ts where not exists
 (select * from course c where not exists
   (select * from select_course sc where sc.student_id=ts.id and sc.course_id=c.id));       
        ID NAME            DEPTMENT_ID
---------- --------------- -----------
         1 echo                   1000
2.查詢沒有選擇全部課程的學生,即沒有全選的學生。(存在這樣的一個學生,他至少有一門課沒有選),
分析:只要有一個門沒有選,即select * from select_course sc where student_id=t_student.id and course_id
=course.id 有一條爲空,即not exists null 爲true,此時select * from course有查詢結果(id爲子查詢中的course.id ),
所以select id,name from t_student 將執行查詢(id爲子查詢中t_student.id )。
SQL> select id,name from t_student where exists
	(select * from course where not exists
		(select * from select_course sc where student_id=t_student.id and course_id=course.id));
        ID NAME
---------- ---------------
         2 spring
         3 smith
         4 liter
3.查詢一門課也沒有選的學生。(不存這樣的一個學生,他至少選修一門課程),
分析:若是他選修了一門select * from course結果集不爲空,not exists 判斷結果爲false;
select id,name from t_student 不執行查詢。
SQL> select id,name from t_student where not exists
	(select * from course where exists
		(select * from select_course sc where student_id=t_student.id and course_id=course.id));
        ID NAME
---------- ---------------
         4 liter
4.查詢至少選修了一門課程的學生。
SQL> select id,name from t_student where exists
	(select * from course where  exists
		(select * from select_course sc where student_id=t_student.id and course_id=course.id));
        ID NAME---------- ---------------         1 echo         2 spring         3 smith
相關文章
相關標籤/搜索