• 2022-05-28
    在数据库技术中,若需要查询学生表中没有电话的学生信息,错误的select语句是( ).(2.0)
    A: select * from 学生表 where 电话=null
    B: select * from 学生表 where 电话=""
    C: select * from 学生表 where 电话="null"
    D: select * from 学生表 where 电话 is null
  • 举一反三