我有两张桌子'category'
和'items'
. 我想从每个类别中选择五个项目。我尝试了我的代码,但它不起作用。我怎样才能在 Laravel 中做到这一点?
<?php
$items = DB::table('items')
->leftjoin('category', 'category.id', '=', 'items.categoryId')
->select('items.id', 'items.name', 'items.categoryId', 'category.categoryName')
->groupBy(items . categoryId)
->limit(5)
->get()