与表操作类似,查询视图数据应使用( )语句
A: WHERE
B: FROM
C: SELECT
D: QUERY
A: WHERE
B: FROM
C: SELECT
D: QUERY
举一反三
- 在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
- 查询表A中所有信息的SQL语句是( )。 A: SELECT ALL ON A; B: SELECT * FROM A; C: SELECT ALL WHERE A; D: SELECT * WHERE A;
- 下面查询语句中哪条查询语句会查询出所有包含"李"的数据? 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: SELECT * FROM stu WHERE stuname='_金_' B: SELECT * FROM stu WHERE stuname='%金%' C: SELECT * FROM stu WHERE stuname like '_金_' D: SELECT * FROM stu WHERE stuname like '%金%'
- 下列语句中查询姓李的学生的语句是( ) A: select * from 表名 where 姓名=‘李’ B: select * from 表名 where 姓名 like ‘李%’ C: select * from 表名 where 姓名 like ‘%李%’ D: select * from 表名 where 姓名 like ‘李’