题目内容

下面选项中,在SELECT语句的WHERE条件中代表不等于的关系运算符是

A. !=
B. >=
C. ><
D. <>

查看答案
更多问题

用户表user中存在一个名字字段username,现查询名字字段中包含"凤"的用户,下列SQL语句中,正确的是

A. select * from user where username = '凤';
B. select * from user where username like '%凤%';
C. select * from user where username like '_凤_';
D. select * from user where username like '凤';

下面选项中,代表匹配任意长度字符串的通配符是

A. %
B. *
C. _
D. ?

若想查询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. 以上都不对

答案查题题库