如何在Laravel框架中使用Eloquent或Fluent选择随机行?
我知道,通过使用SQL,您可以按RAND()进行排序。但是,我希望获得随机行,而不是在初始查询之前对记录的数量进行计数。
什么好主意吗?
如何在Laravel框架中使用Eloquent或Fluent选择随机行?
我知道,通过使用SQL,您可以按RAND()进行排序。但是,我希望获得随机行,而不是在初始查询之前对记录的数量进行计数。
什么好主意吗?
当前回答
对于Laravel 5.2 >=
使用Eloquent方法:
inRandomOrder()
可以使用inRandomOrder方法对查询结果进行随机排序。例如,你可以使用这个方法获取一个随机用户:
$randomUser = DB::table('users')
->inRandomOrder()
->first();
来自docs: https://laravel.com/docs/5.2/queries#ordering-grouping-limit-and-offset
其他回答
你也可以使用order_by方法,如:
Posts::where_status(1)->order_by(DB::raw(''),DB::raw('RAND()'));
这是一个有点奇怪的用法,但是有用。
编辑:正如@Alex所说,这种用法更简洁,也有效:
Posts::where_status(1)->order_by(DB::raw('RAND()'));
这很简单,只要检查你的laravel版本
Laravel >= 5.2:
User::inRandomOrder()->get();
//or to get the specific number of records
// 5 indicates the number of records
User::inRandomOrder()->limit(5)->get();
// get one random record
User::inRandomOrder()->first();
或者对集合使用随机方法:
User::all()->random();
User::all()->random(10); // The amount of items you wish to receive
Laravel 4.2.7 - 5.1:
User::orderByRaw("RAND()")->get();
拉拉维尔 4.0 - 4.2.6:
User::orderBy(DB::raw('RAND()'))->get();
Laravel 3:
User::order_by(DB::raw('RAND()'))->get();
Laravel >= 5.2:
User::inRandomOrder()->get();
或者获取特定数量的记录
// 5 indicates the number of records
User::inRandomOrder()->limit(5)->get();
// get one random record
User::inRandomOrder()->first();
或者对集合使用随机方法:
User::all()->random();
User::all()->random(10); // The amount of items you wish to receive
Laravel 4.2.7 - 5.1:
User::orderByRaw("RAND()")->get();
拉拉维尔 4.0 - 4.2.6:
User::orderBy(DB::raw('RAND()'))->get();
Laravel 3:
User::order_by(DB::raw('RAND()'))->get();
检查这篇文章的MySQL随机行。Laravel 5.2支持这一点,对于旧版本,没有比使用RAW查询更好的解决方案了。
编辑1:正如Double Gras所提到的,自从这个变化以来,orderBy()不允许ASC或DESC以外的任何东西。我相应地更新了我的答案。
Laravel 5.2最终为此实现了一个包装器函数。它被称为inRandomOrder()。
试试这段代码!工作原理:
User::orderBy(DB::raw('RAND()'))->get();
对于Laravel 5.2 >=
使用Eloquent方法:
inRandomOrder()
可以使用inRandomOrder方法对查询结果进行随机排序。例如,你可以使用这个方法获取一个随机用户:
$randomUser = DB::table('users')
->inRandomOrder()
->first();
来自docs: https://laravel.com/docs/5.2/queries#ordering-grouping-limit-and-offset