平时工作项目上难免会遇到一些数据量非常大的情况去分页,上网看了很多资料,整理一下自己的观点看法。
数据量小的时候,我问往往就直接利用limit 直接进行分页,SQL如下:
<pre name="code" class="sql"><span style="color: rgb(68, 68, 68); font-family: Simsun; font-size: 14px; line-height: 26px;">select * from users order by id asc limit </span><span style="color: rgb(68, 68, 68); font-family: Simsun; font-size: 14px; line-height: 26px;">10,10;</span>
数据量大的时候如下:
<span style="color: rgb(68, 68, 68); font-family: Simsun; font-size: 14px; line-height: 26px;">select id,name,content from users order by id asc limit 100000,10;</span>
扫描100010行