我有两张桌子。product和inventory。我想 LEFT JOIN product。inventory还有一个基于inventory.stock的求和操作。我的代码如下,DB::table('product') ->leftjoin('inventory','product.id','=','inventory.product_id') ->select('product.id as id', 'product.name as name', 'product.color as color', 'product.unit_price as unit_price', DB::raw('SUM(inventory.stock)::integer as available_stock')) ->groupBy('product.id') ->get();我的问题是有很多产品在库存表中没有行。在那种情况下,available_stock就是给我null。而不是null我想显示一个默认字符串。像“没有库存”或“0”之类的东西。我怎样才能做到这一点?我正在使用postgresql。
1 回答

开满天机
TA贡献1786条经验 获得超13个赞
这样,您可以设置可用库存的默认值。
当库存不可用时,这将为零。
DB::table('product')
->leftjoin('inventory','product.id','=','inventory.product_id')
->select('product.id as id',
'product.name as name',
'product.color as color',
'product.unit_price as unit_price',
DB::raw('(case when inventory.product_id is null then 0 else SUM(inventory.stock)::integer end) as available_stock'))
->groupBy('product.id')
->get();
- 1 回答
- 0 关注
- 120 浏览
添加回答
举报
0/150
提交
取消