mysql 分页

63 阅读1分钟

两个参数

select * from table limit offset pageSize;

一个参数

select * from table limit pageSize;

一个参数相当于offset = 0