• 2022-06-08
    若想查询student表中name为空值的记录,则正确的SQL语句是(1.0分)
    A: select * from student where name = null;
    B: select * from student where name link null;
    C: select * from student where name = 'null';
    D: select * from student where name is null;
  • 举一反三