MySQL 利用子查询(延迟关联)优化分页查询
通常会有一些起点巨大的分页查询,效率低下,例如:select * from tab where create_date>'2018-12-20 13:20:10' and create_date<'2019-05-01 14:00:00' order by id limit 328000,10;假设 tab 是一个数据量非常大的表,且满足条件 create_date>'2018-12-20 13:20:10' and create_date&