码迷,mamicode.com
首页 > 数据库 > 详细

数据库SQL语句练习题10--18

时间:2016-06-14 19:36:53      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:

10.查询Score表中的最高分的学生学号和课程号。(子查询或者排序)

select t.sno,t.cno from SCORE t where degree = (select max(degree) from SCORE t)

技术分享

11、 查询每门课的平均成绩。

技术分享

12、查询Score表中至少有5名学生选修的并以3开头的课程的平均分数。

select avg(degree) from SCORE t where( cno in (select cno from SCORE t group by cno having count(1)>= 5 )) and cno like 3%;

技术分享

13、查询分数大于70,小于90的Sno列。

技术分享

14、查询所有学生的Sname、Cno和Degree列。

技术分享

15、查询所有学生的Sno、Cname和Degree列。

select t.Sno,c.Cname,t.degree from score t join course c on c.Cno = t.Cno; 

技术分享

16、查询所有学生的Sname、Cname和Degree列。

select t.sname,c.cname,s.degree from STUDENT t,course c,score s where t.sno = s.sno and s.cno = c.cno

技术分享

17、?查询“95033”班学生的平均分。

select avg(degree) from SCORE t  where sno in (select t.sno from STUDENT t where class = 95033)

技术分享

18、 假设使用如下命令建立了一个grade表:
create table grade(low number(3),upp number (3),rank char(1))
insert into grade values(90,100,’A’)
insert into grade values(80,89,’B’)
insert into grade values(70,79,’C’)
insert into grade values(60,69,’D’)
insert into grade values(0,59,’E’)
现查询所有同学的Sno、Cno和rank列。

技术分享

数据库SQL语句练习题10--18

标签:

原文地址:http://www.cnblogs.com/wenwen123/p/5584975.html

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