mysql在select查询语句中,select经常和where结合起来查询,那么where后面可以跟()。
A: 表达式
B: 逻辑关系值
C: 表
D: 数据库
A: 表达式
B: 逻辑关系值
C: 表
D: 数据库
举一反三
- 在SELECT语句的WHERE子句中,完全可以用IN子查询来代替OR逻辑表达式
- 下面查询语句中哪条查询语句会查询出所有包含"李"的数据? A: select * from student where name limit‘%李%’ B: select * from student where name =‘%李%’ C: select * from student where name like‘%李%’ D: select * from student where name in‘%李%’
- 查询表A中所有信息的SQL语句是( )。 A: SELECT ALL ON A; B: SELECT * FROM A; C: SELECT ALL WHERE A; D: SELECT * WHERE A;
- 在SELECT语句的WHERE子句中可以使用子查询,表示将______外部的WHERE条件。
- 在SQL中查询数据,要从第4条开始查询,查询3条记录的语句是()。 A: select * from 表名 B: select * from 表名 where 位置=4 and 个数=3 C: select * from 表名 where 4,3 D: select * from 表名 limit 4,3