• 2022-07-29
    教务管理系统中两张表: 学生表(学号,姓名,专业),选课表(学号,课程号,成绩)。 其中学生表中有m条记录,选课表中有n条记录。 现要查询没有选课的学生名单,以下嵌套查询语句中,不正确的是( )。
    A: select 学号,姓名 from 学生表 where not exists(select * from 选课表 where 学号=学生表.学号);
    B: select 学号,姓名 from 学生表 where exists(select * from 选课表 where 学号=学生表.学号);
    C: select 学号,姓名 from 学生表 where 学号 not in (select 学号 from 选课表 );
  • 举一反三