1

変数値からフィールド値を減算する正しい構文は何ですか?

例:

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

これは正しいです?間違った結果を得るからです。

4

1 に答える 1

5

これを試して

$this->db->set('volume', 'volume-'.$r['quantity'], FALSE)
于 2012-04-17T12:29:24.270 に答える