四个表
学生信息表
学生课程表
课程信息表
教师信息表
1.查询01课程比02课程分高的学生信息和分数
select a.*,b.score,c.score from student a
inner join sc b on a.sid = b.sid
inner join sc c on a.sid = c.sid
and b.cid ='01' and c.cid = '02'
where b.score > c.score
2.查询同时存在01,02课程的情况
select *
from sc a inner join sc b on a.sid = b.