Laravel查询生成器更新增量

时间:2017-08-30 02:57:45

标签: laravel laravel-5.4

您好我需要修改我的查询,我需要更新我的产品数量,只需增加它,这是我的代码示例。

    DB::table('product_warehouse')
    ->where('product_id', $product_id)
    ->where('warehouse_id', $warehouse_id)
    ->update(['product_qty' => $old_qty+$product_qty]);

1 个答案:

答案 0 :(得分:5)

你可以尝试两种方式:

DB::table('product_warehouse')
    ->where('product_id', $product_id)
    ->where('warehouse_id', $warehouse_id)
    ->update(['product_qty' => DB::raw('product_qty + ' . $product_qty)]);

或者

DB::table('product_warehouse')
    ->where('product_id', $product_id)
    ->where('warehouse_id', $warehouse_id)
    ->increment('product_qty', $product_qty);