继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

数据库知识点(5)——多列过滤

呦呦米
关注TA
已关注
手记 31
粉丝 103
获赞 598

多列过滤是在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

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP