第二题黑马讲过:select * from tb a, (select * from tb order by id limit 1000, 10) b where a.id = b.id 核心思路是走主键索引,但其实也不是只查10条