我有一个名为
Question
的 Eloquent 模型,链接到名为 questions
的数据库表。
是否有一个 Eloquent 函数可以让我从数据库中提取一个随机问题(或一组随机问题)?类似于以下内容:
$random_question = Question::takeRandom(1)->get();
或
$random_questions = Question::takeRandom(5)->get();
您只需要做:
$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 个随机问题。
阅读有关 Laravel 4 查询范围的更多信息
$data = Model::where('id',$id)->get()->random($count);
您可以使用随机。简单又有效。
只需在查询中使用 ->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();
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 个小查询获得一个随机元素