MySQL中使用limit进行分页查询

2021-04-19 09:40:27
select * from table limit 1, 3 select * from table limit 3 offset 1 都表示分页的每页条数是3条 是第2页 如果是第1页的话,参数1 改成 0