mysql分页查询语句怎么写
发布网友
发布时间:2022-04-19 21:50
我来回答
共2个回答
热心网友
时间:2022-04-07 16:33
--1.最常用的分页
select * from content order by id desc limit 0, 10;
--limit是MySQL中特有的分页语法,用法如下:
--举例:
select * from tableName limit 5; --返回前5行
select * from tableName limit 0,5; --同上,返回前5行
select * from tableName limit 5,10; --返回6-15行
热心网友
时间:2022-04-07 17:51
参考:
select * from table order by id limit (intPage - 1) * PageRow , intPage * PageRow
PageRow 每页多少条记录
intPage 页数