码迷,mamicode.com
首页 > 其他好文 > 详细

例题:从下边一个成绩表做出三个题,题目比较难理解

时间:2015-04-24 15:44:44      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:

               

技术分享

     

 

                     

33、查询成绩比该课程平均成绩低的同学的成绩表。

select*from score a where DEGREE <(select avg(degree) from score b where a.cno=b.cno )

 

-查询每门课最高分学生之外的其他学生分数信息

select*from score a where DEGREE not in(select MAX(degree) from score b where a.cno=b.cno)

a.cno=b.cno 这句代码的意思是在同一门课程中 选出最高分,where degree not in 就是把最高分去掉

--剔除选多门课的每门课最高分

select *from score a where DEGREE not in (select MAX(degree)from score b where a.cno=b.cno) and sno not in (select cno from score

 group by cno having COUNT(*)=1)

select cno from score group by cno having count(*)=1   --这句话表示把学生学一门课的课程都显示出来,前面加个not in 剩下的就是选多门课的课程

 

例题:从下边一个成绩表做出三个题,题目比较难理解

标签:

原文地址:http://www.cnblogs.com/275147378abc/p/4453342.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!