如果表中有100条记录,查询语句”select * from tb_book limit 5,3”将显示多少条记录()。
举一反三
- 假定A表中有100条记录,B表中有1000条记录,则select A.*,b.* from A CROSS JOIN B,共输出多少条查询结果( ) A: 100 B: 1000 C: 100000 D: 1000000
- 以下______语句查询表student中第3条到第10条记录 。 A: SELECT * FROM student LIMIT 2,8; B: SELECT * FROM student LIMIT 2,9; C: SELECT * FROM student LIMIT 3,10; D: SELECT * FROM student LIMIT 3,9;
- SQL数据库中查询前3条记录的SQL语句是()。 A: select top 3 from table B: select * from table limit 3 C: select * from table limit 1,3 D: select * from table order 3
- 在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
- 查询出bok表中的总记录数 A: select count(*)from tb_book; B: selectcountfromtb_book; C: selectfromcounttb_book; D: select*fromcounttb_book;