変数値からフィールド値を減算する正しい構文は何ですか?
例:
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
これは正しいです?間違った結果を得るからです。