码迷,mamicode.com
首页 > Web开发 > 详细

thinkphp-order

时间:2017-02-10 00:14:46      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:thinkphp-order

定义

order方法属于模型的连贯操作方法之一,用于对操作的结果排序

语法

Db::table(表名)->where(条件)->order(排序规则)->limit(记录数)->select();

示例

Db::table(‘think_user‘)->where(‘status=1‘)->order(‘id desc‘)->limit(5)->select();
Db::table(‘think_user‘)->where(‘status=1‘)->order(‘id desc,status‘)->limit(5)->select();
Db::table(‘think_user‘)->where(‘status=1‘)->order([‘order‘,‘id‘=>‘desc‘])->limit(5)->select();


本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1896456

thinkphp-order

标签:thinkphp-order

原文地址:http://suyanzhu.blog.51cto.com/8050189/1896456

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