欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

MySQL分页(limit)

程序员文章站 2024-02-19 13:50:22
...

limit:分页

语法:

select 查询字段 from 表名 【join2 ... on 连接条件】 
where 筛选条件 
GROUP BY 分组字段 having 分组条件 
order by 分组条件 
limit 起始索引,显示条数
select * from employees limit 0,10;	-- 1
select * from employees limit 10,10; -- 2
select * from employees limit 20,10; -- 3
select * from employees limit (页码数-1)*显示条数,显示条数
相关标签: limit sql