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