1.查询" 01 "课程比" 02 "课程成绩高的学生的信息及课程分数
select student.*, r.score1 ,r.score2 from student right join
(select class1.sid, score1, score2
from (select sid, score as score1 from sc where cid = '01') as class1,
(select sid, score as score2 from sc where cid = '02') as class2
where class1.sid = class2.sid and score1 > score2
)r
on student.sid = r.sid
第一步 先在分数表中把课程1和课程2的数据分别筛选出之后对比课程1比课程2高的学生id,
第二步 结果再与学生表关联
结果:
ps:
2.查询平均成绩大于等于 60 分的同学的学生编号和学生姓名和平均成绩
'''
select sname, student.sid , r.avg_score from student right join
(select sid, avg(score) as avg_score from sc group by sid having avg(score) > 60) r
on student.sid = r.sid
第一步 在sc表中按学生id分组计算平均分,取大于60分的学生id
第二步 将结果与学生表关联
结果:
![image.png](https://upload-images.jianshu.io/upload_images/22857505-e3ab3a67988285fd.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
PS:
- 子查询中聚合函数要有别名( as avg_score)
- where 后面不能有聚合函数,所以这里用having,并且先groupby、后having
- 查询在 SC 表存在成绩的学生信息
select student.* from
(select distinct sid from sc) r left join student on r.sid = student.sid
第一步 从sc表中将sid去重查出后与student表关联
第二部 将符合第一步结果的数据从student表中展示出来
结果:
4.查询所有同学的学生编号、学生姓名、选课总数、所有课程的成绩总和
select student.* , r.cnum, r.sum_score from student left join
(
select sid, count(*) as cnum, sum(score) as sum_score from sc group by sid
) r
on student.sid = r.sid
第一步 将sc表中学生按sid分组,并聚合计算数量、总分。同时注意子查询中聚合函数要有别名( as cnum、as sum_score)
第二步 将第一步中结果与student表关联
结果:
- 查询「李」姓老师的数量
select count(*) from teacher where tname like '李%'
- 查询学过「张三」老师授课的同学的信息
select student.* from (
select sc.sid from (
select course.cid from (
select tid from teacher where tname = '张三') t
left join course on t.tid = course.tid) c
left join sc on c.cid = sc.cid) s
left join student on s.sid = student.sid
第一步 从teacher表中找到张三老师tid
第二步 用tid关联course表找到张三老师教授课程的cid
第三步 用cid关联score表找到上过张三老师课程的学生的sid
第四步 用第三步的sid关联student表查询出具体符合条件的学生的详细信息
太笨了,多表联合查询:
select student.* from student,teacher,course,sc
where
student.sid = sc.sid
and course.cid=sc.cid
and course.tid = teacher.tid
and tname = '张三';
结果:
- 查询没有学全所有课程的同学的信息
select student.* from student where sid not in (
select sid from sc group by sid having count(*) = (select count(distinct cid) from course)
)
排除学全所有课程之外的学生id(not in语法),再与student表关联
结果:
8.查询至少有一门课与学号为" 01 "的同学所学相同的同学的信息
select * from student where sid in(
select distinct sid from sc where cid in (
select cid from sc where sid = '01'
))
第一步 将学号为01的学生所学课程id从sc表中筛选出来
第二步 查询sc表中所学课程id在上面得到的结果中的学生id(in语法),去重
第三步 查询student表中学生id在上面得到结果中的学生信息(in语法)
- 查询和" 01 "号的同学学习的课程完全相同的其他同学的信息
select student.* from student,
(
select *
from (
select sid,
array_to_string(ARRAY(SELECT unnest(array_agg(cid)) order by 1), ',') classes
from sc
group by sid) a
right join (
select array_to_string(ARRAY(SELECT unnest(array_agg(cid)) order by 1), ',') classes1
from sc
group by sid
having sid = '01'
) b on a.classes = b.classes1
where a.sid != '01'
) r
where student.sid = r.sid
mysql有group_concat函数 参考https://blog.csdn.net/qq_35531549/article/details/90383022
postgresql稍微麻烦点。
---ARRAY_AGG()函数是一个聚合函数,它接受一组值并返回一个数组,其中将输入集中的每个值分配给该数组的元素。
----unnest(anyarray)
返回值:setof anyelement(可以理解为一个(临时)表)
说明:unnest函数将输入的数组转换成一个表,这个表的每一列都代表相应的一个数组中的元素。如果unnest与其他字段一起出现在select中,就相当于其他字段进行了一次join。
----array_to_string("数组",",") 即把数组转化为字符串,并用“,”连接(使用提供的分隔符连接数组元素)
结果:
- 查询没学过"张三"老师讲授的任一门课程的学生姓名
select sname from student where sid not in (
select sid from sc where cid in (
select course.cid from teacher,course
where course.tid = teacher.tid and teacher.tname = '张三'
)
)
第一步 查出张三老师教授的课程id
第二步 在sc表中查出上过张三老师课程的学生id
第三步 将结果的非(not in)去筛选student表