多列过滤是在where语句后用and或or连接对列进行过滤的条件,从而筛选出符合条件的数据。
此篇以学生成绩为例进行演示。
涉及的表有student(学生信息表)和stuscore(成绩表)如图:
1、查询语文优秀(85-100)的学生信息
使用关联查询
select a.no,a.name,b.subject,b.score from student a,stuscore b
where a.no = b.stuno and b.subject='语文' and( b.score between 85 and 100);
使用子查询
select a.no,a.name,b.subject,b.score from student a join stuscore b on a.no = b.stuno where (stuno,score) in (select stuno,score from stuscore where b.subject='语文' and( b.score between 85 and 100) );
结果
2、查询语文或英语有一科优秀的学生信息
select a.no,a.name,b.subject,b.score from student a
join stuscore b on a.no = b.stuno
where (stuno,score) in
(select stuno,score from stuscore
where (b.subject='语文' and( b.score between 85 and 100)) or
(b.subject='英语' and( b.score between 85 and 100))) ;
3、查询语文和英语都优秀的学生信息
select a.no,a.name,b.subject,b.score from student a
join stuscore b on a.no = b.stuno
where (stuno,score) in
(select stuno,score from stuscore
where (b.subject='语文' and( b.score between 85 and 100)) and
(b.subject='英语' and( b.score between 85 and 100))) ;
优先级是先括号中的内容,在and,在or
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦