50道SQL练习题及答案与详细分析
数据表介绍
--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 分数
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;
总结:
join 的使用:left join 以左边为主。right join 以右边为主。join 取交集(效率低1倍)。
on 的使用:on () 的效率高10倍。
on student.sid=r.sid; 执行时间:0.01 sec
on (student.sid=r.sid); 执行时间:0.00 sec
被join的一定是一个表单,而语句中的表单是要select 生成。select xxx 生成 r。
选择正确的查询参数:cid。
思路:
1,选出01的学生,选出02的学生,
2,选出01大于02的学生,
3,添加上学生信息。
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,找出01课程的学生,找出02课程的学生;
2,找出包含01,02 课程的学生。
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;
1.3 查询不存在" 01 "课程但存在" 02 "课程的情况
select * from sc
where sc.SId not in (
select SId from sc
where sc.CId = '01'
)
AND sc.CId= '02';
总结
not in 的使用:相关的sid放到一个表了,再not in;
where XXX not in XXX
where XXX in XXX
查询结果作为新的查询条件。
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;
总结
group by 、 having 的使用:having放后面。
为查询结果,取名:括号后面直接跟随 r。
from的理解:from 表1,表2 ,表3 where。
两个解决方案:
方案1:from 表1,表2 where xxx
方案2:from 表1 left join 表2 on xxx
思路:
1,找出平均值大于60的学生;
2,添加学生信息。
3,查询在 SC 表存在成绩的学生信息
select DISTINCT student.*
from student,sc
where student.SId=sc.SId
select *from student right join
( select sid from sc group by sid)r
on student.sid = r.sid;
总结
去重方式:DISTINCT ,group by xxx
DISTINCT:distinct必须放在要查询字段的开头。
select distinct sid from student;//返回不重复的学生 sid,默认排序。
select distinct name,sid from student;//会过滤掉name和id两个字段都重复的记录
group by xxx:
select *from sc group by sid ;//返回不重复的学生 sid。
比较:
group 是按组查询的,是一种聚合查询,很多时候是为了做统计用,
例如:select sum(score), sid from sc group by sid; //查询总分并按照sid排序。
实际中我们往往用distinct来返回不重复字段的条数:count(distinct sid)
select count(DISTINCT sid) from sc ;//返回不重复的sid的条数。
如果要查询不重复的记录,有时候可以用group by 。
distinct 是查询出来以后再把重复的去掉性能上 group 比 distinct 要好很多
4.查询所有同学的学生编号、学生姓名、选课总数、所有课程的成绩总和
select student.sid, student.sname,r.coursenumber,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.sname,r.coursenumber,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
);
总结:
1,查询课程总数 和成绩综合 ;
2,添加学生信息;
4.1 查有成绩的学生信息
这一题涉及到in和exists的用法,在这种小表中,两种方法的效率都差不多,但是请参考SQL查询中in和exists的区别分析
结论:IN()适合B表比A表数据小的情况
结论:EXISTS()适合B表比A表数据大的情况。EXISTS 存在。
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);
select *from
student,
(select distinct sid from sc) r
where student.sid=r.sid ;
5,查询「李」姓老师的数量
select count(*)
from teacher
where tname like '李%';
select count(*) from
Teacher where SUBSTRING(Tname,1,2)='李四';
总结:
1,单表查询;
2,like 模糊查询:
like ‘%N’:以N开始。
like ‘N%’:以N结束。
like ‘%N%’:以N开始或结束。
3,SUBSTRING(string, num1, num2):
string:要查询的字段。
num1:第num1个字符串;
num2:字符串的长度为num2。
6,查询学过「张三」老师授课的同学的信息
select student.* from student,teacher,course,sc
where
student.sid = sc.sid
and course.cid=sc.cid
and course.tid = teacher.tid
and tname = '张三';
总结:
多表联合查询。
and的使用。
7,查询没有学全所有课程的同学的信息
select *from student
where student.sid not in (
select sc.sid from sc
group by sc.sid
having count(sc.cid) = (select count(cid) from course )
);
总结:
1,先查询选了所有课的学生,再选择这些人之外的学生。
2,where xxx not in xxx
3,count(sc.cid) = (select count(cid) from course )
8,查询至少有一门课与学号为" 01 "的同学所学相同的同学的信息
select * from student
where student.sid in (
select distinct(sc.sid) from sc
where sc.cid in(
select sc.cid from sc
where sc.sid = '01'
)
);
总结:
1,从sc查询01同学的所有课程 结果A。
2,从sc查询 选了结果A课程的同学的 结果B ,注意去重;
3,结合student 显示结果B里的学生信息。
9.查询和" 01 "号的同学学习的课程完全相同的其他同学的信息
select *from student where student.sid in (
select distinct(sc.sid) from sc
where sc.sid not in(
select sc.sid from sc
where sc.cid
not in (
select distinct(cid) from sc
where sc.sid='07')
)
);
注意:如果07修了所有的课,结果不准确。有待优化。
总结:
1,sc中查询07同学没修的课 结果A。
2,sc查询修了结果A 的 结果B。
3,SC查询结果B之外的 结果C。
4,结果C与student结合显示学生信息 结果D。
10.查询没学过"张三"老师讲授的任一门课程的学生姓名
select * from student
where student.sid not in(
select sc.sid from sc where sc.cid in(
select course.cid from course where course.tid in(
select teacher.tid from teacher where tname = "张三"
)
)
);
select * from student
where student.sid not in(
select sc.sid from sc,course,teacher
where
sc.cid = course.cid
and course.tid = teacher.tid
and teacher.tname= "张三"
);
总结
仍然还是嵌套,三层嵌套, 或者多表联合查询
1,拿到张三的tid 结果A
2,拿到张三的课结果B
3,学过结果B课程集的结果C。
4,C的反面D。
11.查询两门及其以上不及格课程的同学的学号,姓名及其平均成绩
select student.SId, student.Sname,b.avg
from student RIGHT JOIN
(select sid, AVG(score) as avg from sc
where sid in (
select sid from sc
where score<60
GROUP BY sid
HAVING count(score)>1)
GROUP BY sid) b on student.sid=b.sid;
总结
1,查询不及格的课程,找出超过两门的同学;
2,附加学生信息。
注意:对结果进行操作,需要 GROUP BY 和 HAVING的配合。切记。
12,检索" 01 "课程分数小于 60,按分数降序排列的学生信息
select student.*, sc.score from student, sc
where student.sid = sc.sid
and sc.score < 60
and cid = "01"
ORDER BY sc.score DESC;
总结:
双表联合查询,在查询最后可以设置排序方式,语法为ORDER BY ***** DESC\ASC;
13,按平均成绩从高到低显示所有学生的所有课程的成绩以及平均成绩
select sc.*,r. avscore from sc
left join (
select sid,avg(score) as avscore from sc
group by sid
)r
on sc.sid = r.sid
order by avscore desc;
总结:
1,求出平均成绩,并且以平均成绩为标准排序。
2,所有学生、所有成绩即为sc。
14,查询各科成绩最高分、最低分和平均分:
以如下形式显示:课程 ID,课程 name,最高分,最低分,平均分,及格率,中等率,优良率,优秀率
及格为>=60,中等为:70-80,优良为:80-90,优秀为:>=90
要求输出课程号和选修人数,查询结果按人数降序排列,若人数相同,按课程号升序排列
select
sc.CId ,
max(sc.score)as 最高分,
min(sc.score)as 最低分,
AVG(sc.score)as 平均分,
count(*)as 选修人数,
sum(case when sc.score>=60 then 1 else 0 end )/count(*)as 及格率,
sum(case when sc.score>=70 and sc.score<80 then 1 else 0 end )/count(*)as 中等率,
sum(case when sc.score>=80 and sc.score<90 then 1 else 0 end )/count(*)as 优良率,
sum(case when sc.score>=90 then 1 else 0 end )/count(*)as 优秀率
from sc
GROUP BY sc.CId
ORDER BY count(*)DESC, sc.CId ASC;
总结:
1,以cid我基准统计;
2,求出最高分,最低分,平均分。
3,sum(case when sc.score>=80 and sc.score<90 then 1 else 0 end )的使用。
15,按各科成绩进行排序,并显示排名, Score 重复时保留名次空缺
这一道题有点tricky,可以用变量,但也有更为简单的方法,即自交(左交)
用sc中的score和自己进行对比,来计算“比当前分数高的分数有几个”。
总结:
没看懂。
17,查询学生的总成绩,并进行排名,总分重复时不保留名次空缺
这里主要学习一下使用变量。在SQL里面变量用@来标识。
select course.cname, course.cid,
sum(case when sc.score<=100 and sc.score>85 then 1 else 0 end) as "[100-85]",
sum(case when sc.score<=85 and sc.score>70 then 1 else 0 end) as "[85-70]",
sum(case when sc.score<=70 and sc.score>60 then 1 else 0 end) as "[70-60]",
sum(case when sc.score<=60 and sc.score>0 then 1 else 0 end) as "[60-0]"
from sc left join course
on sc.cid = course.cid
group by sc.cid;
总结:
1,用case when 返回1 以后的统计不是用count而是sum。
2,sum(case when '条件' then 1 else 0 end)的使用。
3, XXX left join XXX on XXX 。
4,mysql sql_mode = only_full_group_by 报错的解决。
18,查询各科成绩前三名的记录
mysql不能group by 了以后取limit,所以不要想着讨巧了;
思路有两种,第一种比较暴力,计算比自己分数大的记录有几条,如果小于3 就select,因为对前三名来说不会有3个及以上的分数比自己大了,最后再对所有select到的结果按照分数和课程编号排名即可。
select * from sc
where (
select count(*) from sc as a
where sc.cid = a.cid and sc.score
)< 3
order by cid asc, sc.score desc;
第二种比较灵巧一些,用自身左交,但是有点难以理解。
先用自己交自己,条件为a.cid = b.cid and a.score
想要查看完整的表可以:
select * from sc a
left join sc b on a.cid = b.cid and a.score
order by a.cid,a.score;
如果这个特定的a.sid和a.cid组合出现在这张表里的次数少于3个,那就意味着这个组合(学号+课号+分数)是这门课里排名前三的。
所以下面这个计算中having count 部分其实count()或者任意其他列都可以,这里制定了一个列只是因为比count()运行速度上更快。
最终查询方法:
select a.sid,a.cid,a.score from sc a
left join sc b on a.cid = b.cid and a.score
group by a.cid, a.sid
having count(b.cid)<3
order by a.cid;
19,查询每门课程被选修的学生数
cid, count(sid) from sc
group by cid;
20,查询出只选修两门课程的学生学号和姓名
联合查询
select student.SId,student.Sname
from sc,student
where student.SId=sc.SId
GROUP BY sc.SId
HAVING count(*)=2;
嵌套查询
select student.sid, student.sname from student
where student.sid in
(select sc.sid from sc
group by sc.sid
having count(sc.cid)=2
);
连接查询
select student.sname,student.sid from sc
left join student
on sc.sid=student.sid
group by sc.sid
having count(sc.cid)=2;
21.查询男生、女生人数
select ssex, count(*) from student
group by ssex;
22,查询名字中含有「风」字的学生信息
select *from student
where student.Sname like '%风%';
23.查询同名学生名单,并统计同名人数
select sname, count(*) from student
group by sname
having count(*)>1;
总结:
找到同名的名字并统计个数。选择count()>1的名字。
24,查询 1990 年出生的学生名单
select *from student
where YEAR(student.Sage)=1990;
select *from student
where sage like '1990%'
order by sid asc;
总结:
date的属性,YEAR的使用。
25,查询每门课程的平均成绩,结果按平均成绩降序排列,平均成绩相同时,按课程编号升序排列
select sc.cid, course.cname, AVG(SC.SCORE) as average from sc, course
where sc.cid = course.cid
group by sc.cid
order by average desc,cid asc;
26.查询平均成绩大于等于 85 的所有学生的学号、姓名和平均成绩
having也可以用来截取结果表,在这里就先得到平均成绩总表,再截取AVG大于85的即可.
关联查询:
select student.sname ,student.sid,avg(score) as average from sc right join student
on sc.sid=student.sid
group by sc.sid
having avg(sc.score)>85
order by average desc ,sc.sid asc;
联合查询:
select student.sid, student.sname, AVG(sc.score) as aver from student, sc
where student.sid = sc.sid
group by sc.sid
having aver > 85;
17,查询课程名称为「数学」,且分数低于 60 的学生姓名和分数
联合查询:
select student.sname, sc.score from student, sc, course
where student.sid = sc.sid
and course.cid = sc.cid
and course.cname = "数学"
and sc.score < 60;
嵌套查询:
select student.sname, student.sid,r.score from student right join (
select sc.sid,sc.score from sc,course
where course.cname='数学' and sc.score < 60 and sc.cid=course.cid)
r
on student.sid=r.sid order by r.sid asc;
28,查询所有学生的课程及分数情况(存在学生没成绩,没选课的情况)
select student.sname, student.sid, cid, score from student
left join sc
on student.sid = sc.sid;
总结:
肯定要用join查询了。
29,查询任何一门课程成绩在 70 分以上的姓名、课程名称和分数
select student.sname, course.cname,sc.score from student,course,sc
where sc.score>70
and student.sid = sc.sid
and sc.cid = course.cid;
注意:使用联合查询
30.查询存在不及格的课程
使用group by:
select cid from sc
where score< 60
group by cid;
使用distinct:
select DISTINCT sc.CId
from sc
where sc.score <60;
31.查询课程编号为 01 且课程成绩在 80 分及以上的学生的学号和姓名
select student.sid,student.sname
from student,sc
where cid="01"
and score>=80
and student.sid = sc.sid;
32,求每门课程的学生人数
select cid,count(cid) as 人数 from sc
group by cid;
33,成绩不重复,查询选修「张三」老师所授课程的学生中,成绩最高的学生信息及其成绩
select student.*,sc.score, sc.cid from student,sc ,teacher,course
where student.sid=sc.sid
and sc.cid=course.cid
and course.tid=teacher.tid
and teacher.tname='张三'
group by course.cid
having max(sc.score);
select student.*, sc.score, sc.cid from student, teacher, course,sc
where teacher.tid = course.tid
and sc.sid = student.sid
and sc.cid = course.cid
and teacher.tname = "张三"
order by score desc
limit 1;
总结:
1,注意 student.* 的使用。
2,联合查询;
3,HAVING MAX()的使用,最高分只会出现一个结果,满足不重复。
4,order by score desc limit 1;也可以。可以控制高分的个数。
34,成绩有重复的情况下,查询选修「张三」老师所授课程的学生中,成绩最高的学生信息及其成绩
select student.*, sc.score, sc.cid from student, teacher, course,sc
where teacher.tid = course.tid
and sc.sid = student.sid
and sc.cid = course.cid
and teacher.tname = "张三"
and sc.score = (
select Max(sc.score)
from sc,student, teacher, course
where teacher.tid = course.tid
and sc.sid = student.sid
and sc.cid = course.cid
and teacher.tname = "张三"
);
总结:
1,核心问题是,有重复,即允许有多个并列第一。
2,通过联合查询,找出最大值的个数,再嵌套查询,找出符合最高分的学生。
sc.score =();
35,查询不同课程成绩相同的学生的学生编号、课程编号、学生成绩
select student.* , r.cid ,r.score from student right join (
select a.cid, a.sid, a.score from sc as a
inner join sc as b
on a.sid = b.sid
and a.cid != b.cid
and a.score = b.score
group by cid, sid
) r
on student.sid=r.sid;
总结:
1,inner join 的使用;
2,所有课程分数都一样的判断条件:
on a.sid = b.sid
and a.cid != b.cid
and a.score = b.score
36.查询每门功成绩最好的前两名
方法1,
(select *from sc where sc.cid='01' order by sc.score desc limit 2)
union
(select *from sc where sc.cid='02' order by sc.score desc limit 2)
union
(select *from sc where sc.cid='03' order by sc.score desc limit 2);
方法2,
select a.sid,a.cid,a.score from sc as a
left join sc as b
on a.cid = b.cid and a.score
group by a.cid, a.sid
having count(b.cid)<2
order by a.cid;
方法3,
select a.cid,a.sid,a.score from sc a where (
select count(1) from sc b
where a.cid=b.cid
and b.score >= a.score
) <=2
order by a.cid;
总结:方法2,方法3,不太理解
1,union的使用。
2,统计前几名的案例;
37.统计每门课程的学生选修人数(超过 5 人的课程才统计)
select sc.cid, count(sid) as cc from sc
group by cid
having cc >5;
总结:
不能使用 where cc >5;
38.检索至少选修两门课程的学生学号
select sid, count(cid) as cc from sc
group by sid
having cc>=2;
39,查询选修了全部课程的学生信息
select student.*
from sc ,student
where sc.SId=student.SId
GROUP BY sc.SId
HAVING count(*) = (select DISTINCT count(*) from course );
总结:
1,关联查询用的很好。
2,HAVING count(*)
40.查询各学生的年龄,只按年份来算
参考41题。
41,按照出生日期来算,当前月日 < 出生年月的月日则,年龄减一
select student.SId as 学生编号,student.Sname as 学生姓名,
TIMESTAMPDIFF(YEAR,student.Sage,CURDATE()) as 学生年龄
from student;
42.查询本周过生日的学生
select *
from student
where WEEKOFYEAR(student.Sage)=WEEKOFYEAR(CURDATE());
总结:
1,WEEKOFYEAR的使用;
43,查询下周过生日的学生
select *
from student
where WEEKOFYEAR(student.Sage)=WEEKOFYEAR(CURDATE())+1;
44.查询本月过生日的学生
select *
from student
where MONTH(student.Sage)=MONTH(CURDATE());
45.查询下月过生日的学生
select *
from student
where MONTH(student.Sage)=MONTH(CURDATE())+1;
学无止境!