Update query in Yii(在 Yii 中更新查询)
问题描述
我在 Yii 中有一个要求,我必须根据某些条件更新一个表.我必须用 new_val = previous_value + new_val 更新该列.但是代码没有按预期工作.
I have one requirement in Yii where I have to update one table based on some condition. And I have to update the column with new_val = previous_value + new_val. But the code is not working as expected.
我试过的代码是
$update = Yii::app()->db->createCommand()
->update('tbl_post', array('star'=>('star' + 1),'total'=>('total' + $ratingAjax)),
'id=:id',array(':id'=>$post_id));
在正常查询中,查询将是
In normal query the query will be
UPDATE tbl_post set star= star + 1,total = total + '$ratingAjax' where id = 1
有人知道错在哪里吗?
推荐答案
试试以下:
$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 将允许您发送一个表达式来更新列值.
Using CDbExpression will allow you to send an expression for what to update the column value to be.
参见:http://www.yiiframework.com/doc/api/1.1/CDbCommand#update-detail
和:http://www.yiiframework.com/doc/api/1.1/CDbExpression#__构造细节
这篇关于在 Yii 中更新查询的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Yii 中更新查询
基础教程推荐
- 学说 dbal querybuilder 作为准备好的语句 2022-01-01
- PHP PDO MySQL 查询 LIKE ->多个关键词 2021-01-01
- Cron Jobs 调用带有变量的 PHP 脚本 2022-01-01
- YouTube API v3 点赞视频,但计数器不增加 2022-01-01
- 如何替换eregi() 2022-01-01
- 在PHP中根据W3C规范Unicode 2022-01-01
- PHP 类:全局变量作为类中的属性 2021-01-01
- 如何在 Laravel 5.3 注册中添加动态下拉列表列? 2021-01-01
- 如何在 Laravel 中使用 React Router? 2022-01-01
- 有什么方法可以用编码 UTF-8 而不是 Unicode 返回 PHP`json_encode`? 2021-01-01
