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 页数
声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。
E-MAIL:11247931@qq.com