exists用於檢查子查詢是否至少會返回一行資料,該子查詢實際上並不返回任何資料,而是返回值true或false。
exists 指定乙個子查詢,檢測行的存在。語法:exists subquery。引數 subquery 是乙個受限的 select 語句 (不允許有 compute 子句和 into 關鍵字)。結果型別為 boolean,如果子查詢包含行,則返回 true。
一張活動配置主表activity_main,通過act_code來唯一標明一場活動,活動舉辦地點適配表activity_area,通過act_code與主表進行關聯,活動獎品表activity_sku,通過act_code與主表進行關聯。
create table `activity_main` (
`id` bigint(20) not null auto_increment,
`act_code` varchar(255) not null comment '活動**',
`act_name` varchar(255) not null comment '活動名稱',
primary key (`id`),
unique key `uniq_code` (`act_code`)
) engine=innodb auto_increment=1 default charset=utf8mb4 collate=utf8mb4_0900_ai_ci comment='活動主表'
create table `activity_area` (
`id` bigint(20) not null auto_increment,
`act_code` varchar(255) not null comment '活動**',
`area` varchar(255) not null comment '參與此活動的**',
primary key (`id`)
) engine=innodb auto_increment=1 default charset=utf8mb4 collate=utf8mb4_0900_ai_ci comment='活動適配的**列表'
create table `activity_sku` (
`id` bigint(20) not null auto_increment,
`act_code` varchar(255) not null comment '活動**',
`sku` varchar(255) not null comment '活動贈送的商品',
primary key (`id`)
) engine=innodb auto_increment=1 default charset=utf8mb4 collate=utf8mb4_0900_ai_ci comment='活動贈品表'
比較使用 exists 和 in 的查詢
這個例子比較了兩個語義類似的查詢。第乙個uzxtx查詢使用 in 而第二個查詢使用 exists。注意兩個查詢返回相同的資訊。
# 查詢體重秤
select * from acwww.cppcns.comtivity_main where act_code in (
select act_code from activity_sku where sku = '翎野君的體脂稱'
)# 查詢體重秤
select * from activity_main a where exists (
select 1 from activity_sku b where a.act_code = b.act_code and b.sku = '翎野君的體脂稱'
)# 模糊查詢b-beko英國嬰兒推車
select * from activity_main where act_code in (
select act_code from activity_sku where sku like '%b-beko%'
)# 模糊查詢b-beko英國嬰兒推車
select * from activity_main a where exists (
select 1 from activity_sku b where a.act_code = b.act_code and b.sku like '%b-beko%'
)# 查詢在部落格園舉辦的活動
select * from activity_main where act_code in (
select act_code from activity_area where area = '部落格園'
)# 查詢在部落格園舉辦的活動
select * from activity_main a where exists (
select 1 from activity_area b where a.act_code = b.act_程式設計客棧code and b.area = '部落格園'
)# 在部落格園舉辦活動且活動獎品為華為手機的活動資訊
select * from activity_main where act_code in (
select act_code from activity_area where area = '部落格園' and act_code in (
select act_code from activity_sku where sku = '華為p30pro'
))# 內層的exists語句只在當前where語句中生效,最終是否返回,要根據最外層的exists判斷,如果是 true(真)就返回到結果集,為 false(假)丟棄。
select * from activity_main a where exists (
select 1 from activity_area b where a.act_code = b.act_code and b.area = '部落格園' and exists
(select 1 from activity_sku c where a.act_code = c.act_code and c.sku = '華為p30pro')
)
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是如何運作呢?子查詢...
MySQL exists的用法介紹
有乙個查詢如下 select c.customerid,companyname from customers c where exists select orderid from orders o where o.customerid cu.customerid 這裡面的exists是如何運作呢?子...