最后一个,延迟关联就行了 select * from table limit 800000,10  改成 SELECT * FROM table INNER JOIN (     SELECT id FROM table LIMIT 800000,10  ) AS lim USING (id)