Update the value of a field in database by 1 using codeigniter

后端 未结 3 1297

I want to implement a SQL statement using codeigniter active record.

UPDATE tags SET usage = usage+1 WHERE tag=\"java\";

How can I implemen

3条回答
  •  独厮守ぢ
    2020-12-03 18:06

    I find its sometimes simpler to just write the SQL rather than having Active Record build it for me.

    $sql = 'update tags set usage=usage+1 where tag=?';
    $this->db->query($sql, array($tag));
    

提交回复
热议问题