优化Mysql分页

select * from table
where id >= ( select id from table order by id asc limit 900001,1)
limit 20;



你可能感兴趣的:(mysql,分页)