從變量值中減去字段值的正確語法是什麼?更新字段從變量中減去
例子:
field1 = 100
variable1 = 10
我想用笨的活動記錄
從字段1減去變量1我當前的代碼看起來是這樣的:
$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
這是正確的?因爲我得到錯誤的結果。
確保接受的答案。 – Aaron 2012-04-17 12:33:51
是的。我會。謝謝 – Jetoox 2012-04-17 12:50:26