MySQL exists與in及any的用法

2021-08-02 07:53:18 字數 3473 閱讀 4026

對外表用loop逐條查詢,每次查詢都會檢視exists的條件語句。

當 exists裡的條件語句能夠返回記錄行時(無論記錄行是多少,只要能返回),條件就為真 , 返回當前loop到的這條記錄。反之如果exists裡的條件語句不能返回記錄行,條件為假,則當前loop到的這條記錄被丟棄。

exists的條件就像乙個boolean條件,當能返回結果集則為1,不能返回結果集則為 0。

語法格式如下:

select * from tables_name where [not] exists(select..);
示例如下:

select * from p_user_2 

where exists(select * from p_user where id=12)

如果p_user表中有id為12的記錄,那麼將返回所有p_user_2表中的記錄;否則,返回記錄為空。

如果是not exists,則與上述相反。

總的來說,如果a表有n條記錄,那麼exists查詢就是將這n條記錄逐條取出,然後判斷n遍exists條件

語法格式如下:

select * from a where column in (select column from b);
需要說明的是,where中,column為a的某一列,in 所對應的子查詢語句返回為一列多行結果集。

注意,in所對應的select語句返回的結果一定是一列!可以為多行。

示例如下:

select * from p_user_2 where id [not] in (select id from p_user )
查詢id在p_user表id集合的p_user_2的記錄。not in則相反。

經過sql改變,二者是可以達到同乙個目標的:

select * from p_user_2 

where id [not] in (select id from p_user );

select * from p_user_2

where [not] exists (select id from p_user where id = p_user_2.id )

那麼什麼時候用exists 或者in呢?

**如果查詢的兩個表大小相當,那麼用in和exists差別不大。 **

**如果兩個表中乙個較小,乙個是大表,則子查詢表大的用exists,子查詢錶小的用in: **

例如:表a(小表),表b(大表)

① 子查詢表為表b:

select * from a 

where cc in (select cc from b)

//效率低,用到了a表上cc列的索引;

select * from a

where exists(select cc from b where cc=a.cc)

//效率高,用到了b表上cc列的索引。

② 子查詢表為表a:

select * from b 

where cc in (select cc from a)

//效率高,用到了b表上cc列的索引;

select * from b

where exists(select cc from a where cc=b.cc)

//效率低,用到了a表上cc列的索引。

not in 和not exists如果查詢語句使用了not in 那麼內外表都進行全表掃瞄,沒有用到索引;而not extsts 的子查詢依然能用到表上的索引。

**所以無論哪個表大,用not exists都比not in要快。 **

any 可以與=、>、>=、<、<=、<>結合起來使用,分別表示等於、大於、大於等於、小於、小於等於、不等於其中的任意乙個資料。

all可以與=、>、>=、<、<=、<>結合是來使用,分別表示等於、大於、大於等於、小於、小於等於、不等於其中的其中的所有資料。

它們進行子查詢的語法如下:

operand comparison_operator any (subquery);

operand in (subquery);

operand coparison_operator some (subquery);

operand comparison_operator all (subquery);

any,all關鍵字必須與乙個比較操作符一起使用。

例如:

select age from t_user where  age > any (select age from t_user_copy);
假設表t_user 中有一行包含(10),t_user_copy包含(21,14,6),則表示式為true;如果t_user_copy包含(20,10),或者表t_user_copy為空表,則表示式為false。如果表t_user_copy包含(null,null,null),則表示式為unkonwn。

all的意思是「對於子查詢返回的列中的所有值,如果比較結果為true,則返回true」

例如:

select age from t_user where  age > all (select age from t_user_copy);
假設表t_user 中有一行包含(10)。如果表t_user_copy包含(-5,0,+5),則表示式為true,因為10比t_user_copy中的查出的所有三個值大。如果表t_user_copy包含(12,6,null,-100),則表示式為false,因為t_user_copy中有乙個值12大於10。如果表t_user_copy包含(0,null,1),則表示式為unknown。如果t_user_copy為空表,則結果為true。

③ not in /in

not in 是 「<>all」的別名,用法相同。

語句in 與「=any」是相同的。

例如:

select s1 from t1 where s1 = any (select s1 from t2);

select s1 from t1 where s1 in (select s1 from t2);

語句some是any的別名,用法相同。

例如:

select s1 from t1 where s1 <> any (select s1 from t2);

select s1 from t1 where s1 <> some (select s1 from t2);

在上述查詢中some理解上就容易了「表t1中有部分s1與t2表中的s1不相等」,這種語句用any理解就有錯了。

Mysql exists用法小記

exists用於檢查子查詢是否至少會返回一行資料,該子查詢實際上並不返回任何資料,而是返回值true或false。exists 指定乙個子查詢,檢測行的存在。語法 exists subquery。引數 subquery 是乙個受限的 select 語句 不允許有 compute 子句和 into 關...

Mysql exists用法小結

exists用於檢查子查詢是否至少會返回一行資料,該子查詢實際上並不返回任何資料,而是返回值true或false。exists 指定乙個子查詢,檢測行的存在。語法 exists subquery。引數 subquery 是乙個受限的 select 語句 不允許有 compute 子句和 into 關...

MySQL exists的用法介紹

有乙個查詢如下 1selectc.customerid,companyname 2fromcustomers c 3whereexists 4selectorderidfromorders o 5whereo.customerid cu.customerid 這裡面的exists是如何運作呢?子查詢...