--查询MA系的女同学 select * from student where sex='F' and sdept='MA' --查询CS系姓狗的学生选修的课程,列出学号,课程号和成绩 select sc.sno,cno,grade from sc,student where student.sno=sc.sno and sdept='cs' and sname like '狗%' --查询选修了数据库课程的学生的学号,成绩,按成绩降序排列 select sno,grade from sc,course where sc.cno=course.cno and cname='