标签:
(1)关键字: LIMIT beginIndex, maxRow
(2)示例:
-- 从beginIndex行开始,查询maxRow行 select * from table limit beginIndex,maxRow -- 从10行开始,查询20行;即查询10~30行的数据 select * from table limit 10,20
-- 返回前10行 select * from table WHERE … LIMIT 10; -- 返回前10行 select * from table WHERE … LIMIT 0,10; -- 返回第10-30行数据 select * from table WHERE … LIMIT 10,20;
数据库MySQL-Oracle-DB2-SQLServer分页查询
标签:
原文地址:http://www.cnblogs.com/yeahwell/p/db-query-by-page.html