使用 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');
}