先來講一下Mysql中limit的語法:sql
--語法: SELECT * FROM table LIMIT [offset,] rows | rows OFFSET offset
--舉例: select * from table limit 5; --返回前5行 select * from table limit 0,5; --同上,返回前5行 select * from table limit 5,10; --返回6-15行
Mysql中分頁主要利用limit可以根據偏移量返回結果的特性:性能
select ... from ... where ... order by ... desc limit pagesize * (page - 1), pagesize; --舉例:取t_u_coach表中按coachId降序排列後第5頁的教練列表,其中每頁10個教練 select * from t_u_coach where id > 10000 order by coachId desc limit 40, 10;
在中小數據量的狀況下,惟一須要注意的是coachId和id最好已經創建了聚合索引。優化
可是當數據量很大的時候,limit m,n 的性能隨着m的增長而急劇降低。好比:spa
--舉例:偏移值過大的時候性能降低 select * from t_u_coach where id > 10000 order by coachId desc limit 40000, 10;
此時,一般有兩種方法來進行優化:code
一,使用子查詢的方式來進行分頁blog
select * from t_u_coach where coachId >= (select coachId from t_u_coach where id > 10000 order by coachId desc limit 40000, 1) limit 10;
二,使用join的方式來進行分頁索引
select * from t_u_coach as t1 join (select coachId from t_u_coach where id > 10000 order by coachId desc limit 40000, 1) as t2 where t1.coachId >= t2.coachId order by t1.coachId desc limit 10;
使用子查詢來進行分頁優化的時候,主要是由於能在子查詢中使用索引。
it