(1) 索引覆盖 Select id from table limit 1000,10 (2) 在索引覆盖的基础上嵌套 Select * from table where id<=(select id from table limit 1000,10) limit 10 (3) 在索引的基础上连接 Select * from table a join table b on a.id = b.id