开发者

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

开发者 https://www.devze.com 2023-01-08 13:33 出处:网络
I want to implement a SQL statement using codeigniter active record. UPDATE tags SET usage = usage+1开发者_C百科 WHERE tag=\"java\";

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

UPDATE tags SET usage = usage+1开发者_C百科 WHERE tag="java";

How can I implement this using Codeigniter active records?

Regards


$this->db->set('usage', 'usage+1', FALSE);
$this->db->where('tag', 'java');
$this->db->update('tags');


You can also use something like this

$data = array('usage' => 'usage+1', *other columns*);
$this->db->where('tag', 'java');
$this->db->update('tags', $data);

UPDATE: $data was not being passed on to update


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));
0

精彩评论

暂无评论...
验证码 换一张
取 消