是否可以更新$ this-> db-> get()中的值

时间:2014-06-20 07:14:43

标签: codeigniter

从codeigniter中选择活动记录后是否可以更新表?

$this->db->select('*');
$this->db->from('table');
$this->db->get();

1 个答案:

答案 0 :(得分:0)

是的,你可以。只需要$this->db->update('table_name', $update_data, $where_clause) 选择之后。请务必先保存您选择的结果,这样您就不会将数据丢失到更新中。除非您使用select中的结果来更新表格。