我的问题很简单,但是很难通过搜索引擎找到答案。
我只想更新数据库中的一个字段,使用该字段的旧值添加另一个值。我目前正在使用以下内容:
$this->Advertisement->saveField('total_views', '(total_views + 1)', false);
但这给了我下一个查询:
UPDATE `advertisement` SET `total_views` = '(total_views +1)', `modified` = '2011-08-26 10:44:58' WHERE `advertisement`.`id` = 16
这是错误的,应该是:
UPDATE `advertisement` SET `total_views` = (total_views +1), `modified` = '2011-08-26 10:44:58' WHERE `advertisement`.`id` = 16
问题在于它放在(total_views +1)引号之间。
(total_views +1)
有人对如何使它起作用有想法吗?
$this->Advertisement->updateAll( array('Advertisement.total_views' => 'Advertisement.total_views + 1'), array('Advertisement.id' => 1) );