利用limit实现分页查询

limit offset, size;

offset要显示条目的起始索引,offset =(page - 1)* size,page为第几页。
size:每页显示的记录数。

select * from employees limit (2-1)*5,5;