• 2022-05-29
    查询每个学生的学号、姓名、选修的课程名及成绩,下列()的操作是正确的。
    A: select student,sno,sname,grade from student,sc where student.sno=sc.sno and sc.cno=course.cno
    B: select student,sno,sname,grade from student,sc,cource where student.sno=sc.sno
    C: select student,sno,sname,grade from student,sc,cource where sc.cno=course.cno
    D: select student,sno,sname,grade from student,sc,cource where student.sno=sc.sno and sc.cno=course.cno
  • 举一反三