代码之家  ›  专栏  ›  技术社区  ›  Martney Acha

使用增量更新Laravel查询生成器

  •  2
  • Martney Acha  · 技术社区  · 7 年前

    您好,我需要修复我的查询,我需要更新我的产品数量,只是增加它,这是我的代码与样本。

        DB::table('product_warehouse')
        ->where('product_id', $product_id)
        ->where('warehouse_id', $warehouse_id)
        ->update(['product_qty' => $old_qty+$product_qty]);
    
    1 回复  |  直到 7 年前
        1
  •  8
  •   rikardo_paiva    7 年前

    您可以尝试两种方法:

    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);