如何get_models_by_brand(按body_type分组)?
我有那些表----> 1.models2.brands3.body_type
我想进行查询,以按品牌将模型按body_type分组,如下所示

{
  {
  "sedan" : ["316","318"]
  },

  {
    "coupe" : ["z3","z4"]
  },

}


这就是我获取品牌的方式----控制文件

public function getBrands()
{
    $brands = DB::table('brands')
              ->join('countries', 'brands.country_id', 'countries.country_id')
              ->where('brands_status', 1)
              ->select('brands.brands_id','brands.brands_name','brands.brands_name_ar',
              'brands.brands_logo_url','countries.country_name','countries.country_name_ar')
              ->get()->toArray();
    return response()->json(new Response(true, $brands));
}

最佳答案

非常简单,您可以在查询中使用-> groupBy()

关于php - 如何在SQL中按结果分组,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56012571/

10-09 23:11