码迷,mamicode.com
首页 > 其他好文 > 详细

tp5.1 随机查询数据

时间:2021-03-04 13:05:43      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:如何   随机查询   直接   think   str   php5   php   mode   pre   

说到随机查询数据,如果用sql的话 ,直接用 order by rand() 就是说随机排序,我们取多少条都可以

例:

select * from table where 1 order by rand() limit 10

那tp5.1中如何实现呢?

ThinkPHP5从V5.0.17之后,如果排序使用到SQL函数,要用orderRaw()代替order()进行排序。

示例:

Db::name(‘user‘)->orderRaw(‘rand()‘)->limit(0,5)->select()
//或者
UserModel::orderRaw(‘rand()‘)->limit(0,5)->select()

tp5.1 随机查询数据

标签:如何   随机查询   直接   think   str   php5   php   mode   pre   

原文地址:https://www.cnblogs.com/makalochen/p/14475004.html

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