码迷,mamicode.com
首页 > 数据库 > 详细

mysql取出指定范围数据limit offset分析与运用

时间:2019-07-20 09:26:29      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:strong   asc   from   off   理解   php   select   https   http   

传统写法

limit 偏移量,取出条数

SELECT * FROM yundou_management.service_order where order_status=1 order by id asc limit 108,8 ;

mysql5之后支持新写法,让人更容易理解

limit 取出条数 offset 偏移量

SELECT * FROM yundou_management.service_order where order_status=1 order by id asc limit 8 offset 108 ;

假如从第一条开始获取指定条数量,偏移量为0

SELECT * FROM yundou_management.service_order where order_status=1 order by id asc limit 0,8 ;
SELECT * FROM yundou_management.service_order where order_status=1 order by id asc limit 8 offset 0 ;

也可以简写成如下

SELECT * FROM yundou_management.service_order where order_status=1 order by id asc limit 8;

随着偏移量越来越大,查询速度会越来越慢,解决方案在之前的文章已经介绍过。

参考:mysql量级数据表的分页优化方案

mysql取出指定范围数据limit offset分析与运用

标签:strong   asc   from   off   理解   php   select   https   http   

原文地址:https://blog.51cto.com/phpme/2421747

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!