从变量值中减去字段值的正确语法是什么?
例子:
field1 = 100
variable1 = 10
我想使用 codeigniter 的活动记录从 field1 中减去 variable1
我当前的代码如下所示:
$this->db->set('volume', 'volume'-$r['quantity'], FALSE)
->where('code',$r['ingredient_id'])
->update('tbl_ingredients');
volume is the field
$r['quantity] is the variable
它是否正确?因为我得到错误的结果。