mysql按条件分页查询的语句怎么写啊?
发布网友
发布时间:2022-04-19 21:50
我来回答
共2个回答
热心网友
时间:2023-06-22 10:01
--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行
热心网友
时间:2023-06-22 10:01
参考:
select * from table order by id limit (intPage - 1) * PageRow , intPage * PageRow
PageRow 每页多少条记录
intPage 页数