• 2022-06-09
    查询没有选数据库基础课程的同学学号和姓名。select sno,sname from student where ____________(select ______ from sc ,course where _______________ and cname='数据库基础')
    A: not exists;* ; course.cno=sc.cno and student.sno=sno
    B: not exists;sno ; course.cno=sc.cno and student.sno=sc.sno
    C: sno not in ; sno ; course.cno=sc.cno
    D: sno not in ; * ; course.cno=sc.cno and student.sno=sc.sno
  • 举一反三