精选优质文档-倾情为你奉上/*Student(S#,Sname,Sage,Ssex) 学生表 Course(C#,Cname,T#) 课程表 SC(S#,C#,score) 成绩表 Teacher(T#,Tname) 教师表 */-1、查询“001”课程比“002”课程成绩高的所有学生的学号; select s1.s#from SC s1,SC s2where s1.s#=s2.s# and s1.c#=001 and s2.c#=002 and s1.scores2.score;-2、查询平均成绩大于60分的同学的学号和平均成绩; select s.s#,avg(s.score)from SC sgroup by s.s#having avg(s.score)60;-3、查询所有同学的学号、姓名 、选课数、总成绩; select d.s#,max(d.sname),count(distinct s.c#),sum(s.score)from Student d,SC swh