我有两张桌子。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。
开满天机