使用join和groupBy进行Laravel查询构建

时间:2017-11-28 11:26:28

标签: php laravel-5

我尝试使用Laravel构建此查询

document.body.scrollHeight document.body.scrollWidth

并收到错误

enter image description here那里有什么问题

1 个答案:

答案 0 :(得分:0)

试试这个:

$products = DB::table('products as p')
        ->join('manufacturers', 'manufacturers.id', '=', 'p.productManufacturerID')
        ->select('p.productSKU', 'p.productName','p.productPrice',
            'p.productSize','p.productDescription','p.productQuantity',
            'manufacturers.brandName')
        ->where('p.productCategoryID', $category->id)
        ->get()->toArray();

由于您没有从product_options表中选择任何内容,只需将其从查询中删除即可。