admin 发表于 2022-11-28 14:58:36

mysql数据库教程:exists子查询

mysql数据库教程:exists子查询

-- 如果笔试成绩有人超过80人,就显示所有学生信息
mysql> select * from stuinfo where exists (select * from stumarks where writtenexam>=80);

-- 没有超过80的学生,就显示所有学生信息
mysql> select * from stuinfo where not exists (select * from stumarks where writtenexam>=80);
Empty set (0.00 sec)作用:提高查询效率。

页: [1]
查看完整版本: mysql数据库教程:exists子查询