explain
select sql_no_cache * from record order by regtime asc limit 20000,30;
explain
select sql_no_cache r.* from record r join (select id from record order by regtime asc limit 20000,30) t on t.id=r.id
explain
select sql_no_cache * from record order by regtime asc limit 20000,30;
explain
select sql_no_cache r.* from record r join (select id from record order by regtime asc limit 20000,30) t on t.id=r.id