若想查询student表中name为空值的记录,则正确的SQL语句是
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;
查看答案
有时为了使查询结果更加精确,可以使用多个查询条件,下列选项中,用于连接多个查询条件的关键字是
AND
B. OR
C. NOT
D. 以上都不对
使用DISTINCT消除查询记录中重复值的SELECT语句的语法格式是【】。
在数据表中查询以“北京”开头的企业名称,查询条件应该为like 【】
在SELECT语句的WHERE条件中,可以使用【】关键字判断某个字段的值不在指定的范围区间之内