sql统计各科成绩⼤于平均分的⼈_50道SQL练习题及答案与详
细分析
作者:Kaidi_G
来源:jianshu/p/476b52ee4f1b
⽹上流传较⼴的50道SQL训练,奋⽃了不知道多久终于写完了。前18道题的难度依次递增,从19题开始的后半部分算是循环练习和额外function的附加练习,难度恢复到普通状态。
第9题⾮常难,我反正没有写出来,如果有写出来了的朋友还请赐教。
这50道⾥⾯⾃认为应该没有太多错误,⽽且尽可能使⽤了最简单或是最直接的查询,有多种不相上下解法的题⽬我也都列出了,但也欢迎⼀起学习的朋友进⾏讨论和解法优化啊~
I 数据库介绍
--1.学⽣表
Student(SId,Sname,Sage,Ssex)
--SId 学⽣编号,Sname 学⽣姓名,Sage 出⽣年⽉,Ssex 学⽣性别
--2.课程表
Course(CId,Cname,TId)
--CId 课程编号,Cname 课程名称,TId 教师编号
--3.教师表
Teacher(TId,Tname)
--TId 教师编号,Tname 教师姓名
--4.成绩表
SC(SId,CId,score)
--SId 学⽣编号,CId 课程编号,score 分数
I 学⽣表Student
create table Student(SId varchar(10),Sname varchar(10),Sage datetime,Ssex varchar(10)); insert into Student values('01' , '赵雷' , '1990-01-01' , '男');
insert into Student values('02' , '钱电' , '1990-12-21' , '男');
insert into Student values('03' , '孙风' , '1990-12-20' , '男');
exists的用法insert into Student values('04' , '李云' , '1990-12-06' , '男');
insert into Student values('05' , '周梅' , '1991-12-01' , '⼥');
insert into Student values('06' , '吴兰' , '1992-01-01' , '⼥');
insert into Student values('07' , '郑⽵' , '1989-01-01' , '⼥');
insert into Student values('09' , '张三' , '2017-12-20' , '⼥');
insert into Student values('10' , '李四' , '2017-12-25' , '⼥');
insert into Student values('11' , '李四' , '2012-06-06' , '⼥');
insert into Student values('12' , '赵六' , '2013-06-13' , '⼥');
insert into Student values('13' , '孙七' , '2014-06-01' , '⼥')
I 科⽬表Course
create table Course(CId varchar(10),Cname nvarchar(10),TId varchar(10));
insert into Course values('01' , '语⽂' , '02');
insert into Course values('02' , '数学' , '01');
insert into Course values('03' , '英语' , '03');
I 教师表Teacher
create table Teacher(TId varchar(10),Tname varchar(10));
insert into Teacher values('01' , '张三');
insert into Teacher values('02' , '李四');
insert into Teacher values('03' , '王五');
I 成绩表SC
create table SC(SId varchar(10),CId varchar(10),score decimal(18,1));
insert into SC values('01' , '01' , 80);
insert into SC values('01' , '02' , 90);
insert into SC values('01' , '03' , 99);
insert into SC values('02' , '01' , 70);
insert into SC values('02' , '02' , 60);
insert into SC values('02' , '03' , 80);
insert into SC values('03' , '01' , 80);
insert into SC values('03' , '02' , 80);
insert into SC values('03' , '03' , 80);
insert into SC values('04' , '01' , 50);
insert into SC values('04' , '02' , 30);
insert into SC values('04' , '03' , 20);
insert into SC values('05' , '01' , 76);
insert into SC values('05' , '02' , 87);
insert into SC values('06' , '01' , 31);
insert into SC values('06' , '03' , 34);
insert into SC values('07' , '02' , 89);
insert into SC values('07' , '03' , 98);
I 练习题⽬
1. 查询" 01 "课 程⽐" 02 "课程成绩⾼的学⽣的信息及课程分数 1.1 查询同时存在" 01 "课程和" 02 "课程的情况 1.2 查询存在" 01 "课程但可能不存在" 02 "课程的情况(不存在时显⽰为 null ) 1.3 查询不存在" 01 "课程但存在" 02 "课程的情况
2.查询平均成绩⼤于等于 60 分的同学的学⽣编号和学⽣姓名和平均成绩
3. 查 询 在 SC 表存在成绩的学⽣信息
4. 查询所有同学的学⽣编号、学⽣姓名、选课总数、所有课程的总成绩(没成绩的显⽰为 null ) 4.1 查
有成绩的学⽣信息
5. 查询「李」姓⽼师的数量
6. 查询学过「张三」⽼师授课的同学的信息
7.查询没有学全所有课程的同学的信息
8. 查询⾄少有⼀门课与学号为" 01 "的同学所学相同的同学的信息
9. 查询和" 01 "号的同学学习的课程 完全相同的其他同学的信息 10. 查询没学过"张三"⽼师讲授的任⼀门课程的学⽣姓名 11.查询两门及其以上不及格课程的同学的学号,姓名及其平均成绩 12.检索" 01 "课程分数⼩于 60,按分数降序排列的学⽣信息 13.按平均成绩从⾼到低显⽰所有学⽣的所有课程的成绩以及平均成绩 14.查询各科成绩最⾼分、最低分和平均分: 以如下形式显⽰:课程 ID,课程 name,最⾼分,最低分,平均分,及格率,中等率,优良率,优秀率 及格为>=60,中等为:70-80,优良为:80-90,优秀为:>=90 要求输出课程号和选修⼈数,查询结果按⼈数降序排列,若⼈数相同,按课程号升序排列 15.按各科成绩进⾏排序,并显⽰排名, Score 重复时保留名次空缺 15.1 按各科成绩进⾏排序,并显⽰排名, Score 重复时合并名次 16.查询学⽣的总成绩,并进⾏排名,总分重复时保留名次空缺
16.1 查询学⽣的总成绩,并进⾏排名,总分重复时不保留名次空缺
17.统计各科成绩各分数段⼈数:课程编号,课程名称,[100-85],[85-70],[70-60],[60-0] 及所占百分⽐ 18.查询各科成绩前三名的记录 19.查询每门课程被选修的学⽣数 20.查询出只选修两门课程的学⽣学号和姓名 21.查询男⽣、⼥⽣⼈数 22.查询名字中含有「风」字的学⽣信息 23.查询同名同性学⽣名单,并统计同名⼈数 24.查询 1990 年出⽣的学⽣名单 25.查询每门课程的平均成绩,结果按平均成绩降序排列,平均成绩相同时,按课程编号升序排列 26.查询平均成绩⼤于等于 85 的所有学⽣的学号、姓名和平均成绩 27.查询课程名称为「数学」,且分数低于 60 的学⽣姓名和分数 28.查询所有学⽣的课程及分数情况(存在学⽣没成绩,没选课的情况) 29.查询任何⼀门课程成绩在 70 分以上的姓名、课程名称和分数 30.查询不及格的课程 31.查询课程编号为 01 且课程成绩在 80 分以上的学⽣的学号和姓名32.求每门课程的学⽣⼈数 33.成绩不重复,查询选修「张三」⽼师所授课程的学⽣中,成绩最⾼的学⽣信息及其成绩 34.成绩有重复的情况下,查询选修「张三」⽼师所授课程的学⽣中,成绩最⾼的学⽣信息及其成绩 35.查询不同课程成绩相同的学⽣的学⽣编号、课程编号、学⽣成绩 36.查询每门功成绩最好的前两名 37.统计每门课程的学⽣选修⼈数(超过 5 ⼈的课程才统计)。 38.检索⾄少选修两门课程的学⽣学号 39.查询选修了全部课程的学⽣信息 40.查询各学⽣的年龄,只按年份来算 41.按照出⽣⽇期来算,当前⽉⽇ < 出⽣年⽉的⽉⽇则,年龄减⼀ 41.查询本周过⽣⽇的学⽣ 42.查询下周过⽣⽇的学⽣ 43.查询本⽉过⽣⽇的学⽣ 44.查询下⽉过⽣⽇的学⽣
I 答案
1.查询" 01 "课程⽐" 02 "课程成绩⾼的学⽣的信息及课程分数
因为需要全部的学⽣信息,则需要在sc表中得到符合条件的SId后与student表进⾏join,可以left join 也可以 right join
select * from Student RIGHT JOIN (
select t1.SId, class1, class2 from
(select SId, score as class1 from sc where sc.CId = '01')as t1,
(select SId, score as class2 from sc where sc.CId = '02')as t2
where t1.SId = t2.SId AND t1.class1 > t2.class2
)r
on Student.SId = r.SId;
select * from (
select t1.SId, class1, class2
from
(SELECT SId, score as class1 FROM sc WHERE sc.CId = '01') AS t1,
(SELECT SId, score as class2 FROM sc WHERE sc.CId = '02') AS t2
where t1.SId = t2.SId and t1.class1 > t2.class2
) r
LEFT JOIN Student
ON Student.SId = r.SId;
1.1 查询同时存在" 01 "课程和" 02 "课程的情况
select * from
(select * from sc where sc.CId = '01') as t1,
(select * from sc where sc.CId = '02') as t2
where t1.SId = t2.SId;
1.2 查询存在" 01 "课程但可能不存在" 02 "课程的情况(不存在时显⽰为 null )
这⼀道就是明显需要使⽤join的情况了,02可能不存在,即为left join的右侧或right join 的左侧即可.
select * from
(select * from sc where sc.CId = '01') as t1
left join
(select * from sc where sc.CId = '02') as t2
on t1.SId = t2.SId;
select * from
(select * from sc where sc.CId = '02') as t2
right join
(select * from sc where sc.CId = '01') as t1
on t1.SId = t2.SId;
1.3 查询不存在" 01 "课程但存在" 02 "课程的情况
select * from sc
where sc.SId not in (
select SId from sc
where sc.CId = '01'
)
AND sc.CId= '02';
2.查询平均成绩⼤于等于 60 分的同学的学⽣编号和学⽣姓名和平均成绩
这⾥只⽤根据学⽣ID把成绩分组,对分组中的score求平均值,最后在选取结果中AVG⼤于60的即可. 注意,这⾥必须要给计算得到的AVG 结果⼀个alias.(AS ss)
得到学⽣信息的时候既可以⽤join也可以⽤⼀般的联合搜索
select student.SId,sname,ss from student,(
select SId, AVG(score) as ss from sc
GROUP BY SId
HAVING AVG(score)> 60
)r
where student.sid = r.sid;
select Student.SId, Student.Sname, r.ss from Student right join(
select SId, AVG(score) AS ss from sc
GROUP BY SId
HAVING AVG(score)> 60
)r on Student.SId = r.SId;
select s.SId,ss,Sname from(
select SId, AVG(score) as ss from sc
GROUP BY SId
HAVING AVG(score)> 60
)r left join
(select Student.SId, Student.Sname from
Student)s on s.SId = r.SId;
3.查询在 SC 表存在成绩的学⽣信息
select DISTINCT student.*
from student,sc
where student.SId=sc.SId
4. 查询所有同学的学⽣编号、学⽣姓名、选课总数、所有课程的成绩总和
联合查询不会显⽰没选课的学⽣:
select student.sid, student.ursenumber,r.scoresum
from student,
(select sc.sid, sum(sc.score) as scoresum, count(sc.cid) as coursenumber from sc
group by sc.sid)r
where student.sid = r.sid;
如要显⽰没选课的学⽣(显⽰为NULL),需要使⽤join:
select s.sid, s.ursenumber,r.scoresum
from (
(select student.sid,student.sname
from student
)s
left join
(select
sc.sid, sum(sc.score) as scoresum, count(sc.cid) as coursenumber
from sc
group by sc.sid
)r
on s.sid = r.sid
)
;
4.1 查有成绩的学⽣信息
这⼀题涉及到in和exists的⽤法,在这种⼩表中,两种⽅法的效率都差不多,但是请参考SQL查询中in和exists的区别分析当表2的记录数量⾮常⼤的时候,选⽤exists⽐in要⾼效很多.
EXISTS⽤于检查⼦查询是否⾄少会返回⼀⾏数据,该⼦查询实际上并不返回任何数据,⽽是返回值True或False.
结论:IN()适合B表⽐A表数据⼩的情况
结论:EXISTS()适合B表⽐A表数据⼤的情况
select * from student
where exists (select sc.sid from sc where student.sid = sc.sid);
select * from student
where student.sid in (select sc.sid from sc);
5.查询「李」姓⽼师的数量
select count(*)
from teacher
where tname like '李%';
6.查询学过「张三」⽼师授课的同学的信息
多表联合查询
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论