I need to increment the number of comments on an Entries Table, the SQL for this would be:
UPDATE entries SET comments = comments + 1 WHERE entry_id = 123;
And i was wondering how to do this using Active Record Class form Code Igniter.
http://codeigniter.com/user_guide/database/active_record.html#update