5

使用 codeigniter 活动记录语法将数据从一个表插入到另一个表的语法是什么?我尝试了通常的 mysqli 查询,它可以工作,但我想使用 CodeIgniter Active Record 语法来保持一致性。

我尝试使用这些 CodeIgniter Active Record 查询,但仍然没有运气:

function insert_into()  
{    
    $this->db->insert('table1');
    $this->db->set('to_column');  
    $this->db->select('from_column');
    $this->db->from('table2');
}
4

2 回答 2

14

我认为最好的方法是使用 get 方法从一个表中获取您想要的数据,然后使用查询结果抓取器函数之一(如 result() ),使用 insert() 逐一迭代行方法。

把它放在代码中:

$query = $this->db->get('table1');
foreach ($query->result() as $row) {
      $this->db->insert('table2',$row);
}

当然,我认为 table1 与 table2 具有完全相同的结构(每列的列名和数据类型相同)。如果不是这种情况,您将不得不使用分配将列从一个表映射到另一个表,但如果是这种情况,您的代码将更宽。

于 2013-01-27T17:50:19.980 回答
4

将 $source_table 复制到 $archive_table:

if(($this->db->table_exists($source_table) && ($this->db->table_exists($archive_table)){
    if ($this->db->query("CREATE TABLE $archive_table LIKE $source_table")){
        if($this->db->query("INSERT $archive_table SELECT * FROM $source_table")){
           echo 'copied ok';
        }
     } 
}

比遍历整个结果集并一次插入一行更简洁。

于 2013-09-03T07:16:19.413 回答