8

我有一个要求Yii,我必须根据某些条件更新一张表。我必须用new_val = previous_value + new_val. 但是代码没有按预期工作。

我试过的代码是

$update = Yii::app()->db->createCommand()
->update('tbl_post', array('star'=>('star' + 1),'total'=>('total' + $ratingAjax)),
'id=:id',array(':id'=>$post_id));

在正常查询中,查询将是

UPDATE tbl_post set star= star + 1,total = total + '$ratingAjax' where id = 1

有谁知道错在哪里?

4

3 回答 3

20

尝试以下操作:

$update = Yii::app()->db->createCommand()
    ->update('tbl_post', 
        array(
            'star'=>new CDbExpression('star + 1'),
            'total'=>new CDbExpression('total + :ratingAjax', array(':ratingAjax'=>$ratingAjax))
        ),
        'id=:id',
        array(':id'=>$post_id)
    );

使用CDbExpression将允许您发送一个表达式来更新列值。

见:http ://www.yiiframework.com/doc/api/1.1/CDbCommand#update-detail

和:http: //www.yiiframework.com/doc/api/1.1/CDbExpression# __construct-detail

于 2013-03-27T00:34:30.473 回答
3

你使用字符串,试试这个:

$update = Yii::app()->db->createCommand()
->update('tbl_post', array('star'=>'star + 1','total'=> 'total + '.$ratingAjax),
'id=:id',array(':id'=>$post_id));
于 2013-03-26T16:13:38.690 回答
1

这应该做的工作:

   Post::model()->updateCounters(
        array('star'=>1),
        array('total'=>$ratingAjax),
        array('condition' => "id = :id"),
        array(':id' => $post_id),
    );

它会增加,而不是设置值

于 2015-02-04T10:41:21.380 回答