SQL语句题 Student(Sno,Sname,Sage,Ssex)注释:学生表(学号,姓名,性别年龄,性别) Course(Cno,Cname,Tno) 注释:课程表(课程号,课程名称,教师编号) SC(Sno,Cno,score) 注释:成绩表(学号,课程号,成绩) Teacher(Tno,Tname)注释:教师表(教师编号,教师名) drop sequence s_student; create sequence s_student; drop table student cascad…