排行榜

mysql 中 where in 的用法

本文阅读 2 分钟
首页 后端开发 正文
广告
  • 基本用法

select * from student s where s.id in (20,30);

查询id是20或者是30,等同于select * from student s where s.id = 20 or s.id = 30;


  • 联合查询

select * from student s where s.id in (select age from student);

查询id是age数组里面的,单个字段只能in查询结果是单行的。


很明显后面括号的 select age from student 查出来只有age这一列,假如括号的查询查出来的age是下面图列



那么此时查询就等价于

select * from student s where s.id in (64,57,32,24,35,55);


  • 多行查询

select * from student s where (s.class , s.score) in (select class , max(score) from student group by class)

既然能单个字段in单行结果,那么多个字段就能in多行结果了。


这个sql表示:查询每个班级中分数最高的学生的所有数据


注意,此时的name和class是不会错位的,你本来就是按着匹配的class和score去in匹配class、score的结果集,所以数据不会出错的。


如果你写成这样:

select * from student s where s.class in (select class from student group by class ) and s.score in (select max(score) from student group by class);


就把class和score的关系分开了,分开后就可能出现结果列错位的情况,可能名字和他的分数对不上。


本文经授权后发布,本文观点不代表立场,文章出自:https://blog.csdn.net/qq_41361162/article/details/125095035
如何通过PHPStorm配置Hyperf热更新开发环境
« 上一篇 10-21
macOS安装多版本php,解决icu4c问题
下一篇 » 11-02
广告

相关推荐