首页> 实战笔录 >PHP开发笔记 >ThinkPHP ThinkPHP
tp5随机查询几条数据
作者:小萝卜 2019-03-15 【 PHP MySql TP5 】 浏览 7425
简介tp5随机查询几条数据,V5.0.17+版本开始,当你的order排序中使用了SQL函数的时候,请使用orderRaw方法替代order
V5.0.17+版本开始,当你的order排序中使用了SQL函数的时候,请使用orderRaw方法替代order
//例如随机查询5条数据
Db::name('table_name')->orderRaw('rand()')->limit(5)->select();
V5.0.17之前版本,请使用orderRand方法替代order
//例如
Db::name('table_name')->orderRand('rand()')->limit(5)->select();
很赞哦! (0)
下一篇:TP5.0视图和模板
相关文章
- Swoole 结合TP5创建http服务
- TP6上传文件/图片到阿里云OSS
- TP5.1 钩子与行为应用
- TP5利用scp实现从a服务器转移文件到b服务器
- tp6表单验证提交之后报错Call to a member function set() on null
- TP6/Mysql源生查询当前月每天的数据统计
- SQLSTATE[42S22]: Column not found: 1054 Unknown column 'Attr_id' in 'where clause'
- TP6上传图片验证时报错think\\Validate::check() must be of the type array
- TP6报错:Non-static method think\Request::controller() should not be called statically
- TP6/ThinPHP6 获取主键自增ID