EXISTS用于检查子查询是否至少会返回一行数据,该子查询实际上并不返回任何数据,而是返回值True或False。
EXISTS 指定一个子查询,检测行的存在。语法:EXISTS subquery。参数 subquery 是一个受限的 SELECT 语句 (不允许有 COMPUTE 子句和 INTO 关键字)。结果类型为 Boolean,如果子查询包含行,则返回 TRUE。文章源自设计学徒自学网-https://www.sx1c.com/44030.html
在mysql中,exists用于检查子查询是否至少会返回一行数据,该子查询实际上并不返回任何数据,而是返回true或false,语法为“SELECT 字段 FROM table WHERE EXISTS (subquery);”。文章源自设计学徒自学网-https://www.sx1c.com/44030.html
语法:
SELECT 字段 FROM table WHERE EXISTS (subquery);文章源自设计学徒自学网-https://www.sx1c.com/44030.html
参数:
subquery是一个受限的SELECT语句(不允许有COMPUTE子句和INTO关键字)文章源自设计学徒自学网-https://www.sx1c.com/44030.html
示例:
SELECT * FROM A WHERE EXISTS (SELECT 1 FROM B WHERE B.id = A.id);文章源自设计学徒自学网-https://www.sx1c.com/44030.html
EXISTS执行顺序:文章源自设计学徒自学网-https://www.sx1c.com/44030.html
1、首先执行一次外部查询,并缓存结果集,如 SELECT * FROM A文章源自设计学徒自学网-https://www.sx1c.com/44030.html
2、遍历外部查询结果集的每一行记录R,代入子查询中作为条件进行查询,如 SELECT 1 FROM B WHERE B.id = A.id文章源自设计学徒自学网-https://www.sx1c.com/44030.html
3、如果子查询有返回结果,则EXISTS子句返回TRUE,这一行R可作为外部查询的结果行,否则不能作为结果文章源自设计学徒自学网-https://www.sx1c.com/44030.html
示例如下:文章源自设计学徒自学网-https://www.sx1c.com/44030.html
假设现在有三张表:
student:学生表,其中有字段sno为学号,sname为学生姓名
course:课程表,其中有字段cno为课程号,cname为课程名称
student_course_relation:选课表,记录学生选择了哪些课程,其中有字段sno为学号,cno为课程号
下面通过几个示例来说明一下EXISTS和NOT EXISTS的用法,及其与IN和NOT IN的区别
1、在子查询中使用NULL,仍然返回结果集
下面三种情况返回数据相同,都会返回student表的所有数据:
1
2
3
|
select * from student; select * from student where exists ( select 1); select * from student where exists ( select null ); |
2、EXISTS子查询返回的是一个布尔值true或false
EXISTS用于检查子查询是否至少会返回一行数据,该子查询实际上并不返回任何数据,而是返回布尔值true或false,EXISTS指定一个子查询,检测行的存在。
EXISTS只在乎子查询中是否有记录,与具体的结果集无关,所以下面示例中,子查询中的select sno也可以换成select cno或者select 1,查询出的结果集是一样的。
查询所有选修了课程号为3的学生:
1
2
3
4
5
6
|
select * from student a where exists ( select sno from student_course_relation b where b.cno=3 and b.sno=a.sno); select * from student a where exists ( select cno from student_course_relation b where b.cno=3 and b.sno=a.sno); select * from student a where exists ( select 1 from student_course_relation b where b.cno=3 and b.sno=a.sno); |
补充示例
一张活动配置主表activity_main,通过act_code来唯一标明一场活动,活动举办地点适配表activity_area,通过act_code与主表进行关联,活动奖品表activity_sku,通过act_code与主表进行关联。
活动主表
1
2
3
4
5
6
7
|
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= '活动主表' |
活动在哪些网站举办的适配表
1
2
3
4
5
6
|
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= '活动适配的网站列表' |
活动奖品表
1
2
3
4
5
6
|
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 的查询
这个例子比较了两个语义类似的查询。第一个查询使用 IN 而第二个查询使用 EXISTS。注意两个查询返回相同的信息。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# 查询体重秤 select * from activity_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用法小结的详细内容
评论