• 2022-06-04
    现有学生表S、课程表C和学生选课表SC,它们的结构如下:[br][/br] S(S#, SN, SEX, AGE, DEPT) C(C#, CN,TEACHER) SC(S#, C#, GRADE) 其中:S#为学号,SN为姓名,SEX为性别,AGE为年龄,DEPT为系别,C#为课程号,CN为课程名,GRADE为成绩。 要查找分数高于90分的学生的学号和姓名的语句为( )
    A: select student.sno,sname from student,sc where student.sno=sc.sno and grade>90
    B: select student.sno,sname from student,sc where grade>90
    C: select sno,sname from sc where grade>90
    D: select sno,grade from student where grade>90
  • 举一反三