当数据量比较大的时候,分页越靠后的查询越慢。
可通过查询索引,然后联合查询的方式。
示例:

SELECT a.*
FROM `table_name` a
join (
    select b.id from `table_name` b
    ORDER BY b.CreateTime desc,b.Id desc
    LIMIT 942790,10
) c on c.id = a.id
ORDER BY a.CreateTime desc,a.Id desc