标签: php mysql codeigniter
我想更新我的条目并将其递增1.当我尝试使用CodeIgniter时,它会显示错误。
这是我的代码:
$this->abc->update_by(1,array('group_count'=>"group_count+1")); //here group_count is an integer.
这是我得到的错误:
错误的整数值:第1行第'group_count'列的'group_count + 1'
我该怎么做?