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