如何使用 Laravel 4 的 Eloquent ORM 从数据库中选择随机条目?

问题描述 投票:0回答:4

我有一个名为

Question
的 Eloquent 模型,链接到名为
questions
的数据库表。

是否有一个 Eloquent 函数可以让我从数据库中提取一个随机问题(或一组随机问题)?类似于以下内容:

$random_question = Question::takeRandom(1)->get();

$random_questions = Question::takeRandom(5)->get();
php mysql laravel laravel-4 eloquent
4个回答
11
投票

您只需要做:

$random_question = Question::orderBy(DB::raw('RAND()'))->take(1)->get();

$random_question = Question::orderBy(DB::raw('RAND()'))->take(5)->get();

如果您想使用问题中指定的语法,您可以使用范围。 在模型中

Question
你可以添加以下方法:

public function scopeTakeRandom($query, $size=1)
{
    return $query->orderBy(DB::raw('RAND()'))->take($size);
}

现在您可以做

$random_question = Question::takeRandom(1)->get();
并获得 1 个随机问题。

您可以在 http://laravel.com/docs/eloquent#query-scopes

阅读有关 Laravel 4 查询范围的更多信息

1
投票
$data = Model::where('id',$id)->get()->random($count);

您可以使用随机。简单又有效。


0
投票

只需在查询中使用 ->orderBy(DB::raw('RAND()'))

$featurep= DB::table('tbl_products')
        ->join('tbl_product_images' , 'tbl_products.ID', '=', 'tbl_product_images.Product_ID')
        ->where(array('tbl_products.is_Active' => 0,'CategoryID' => $result->CategoryID))
        ->groupBy('ID')
        ->orderBy(DB::raw('RAND()'))
        ->take(4)
        ->get();


0
投票

Model::orderBy(DB::raw('RAND()'))
Model::inRandomOrder()
Model::all()->random();
是繁重的查询,使用起来便宜得多

$count = Model::count();
$randomInt = random_int(1, $count);
$model = Model::query()
      ->offset($randomInt)
      ->first();

通过此查询,您将使用 2 个小查询获得一个随机元素

© www.soinside.com 2019 - 2024. All rights reserved.