How can I do this with active record
Objective
Insert “Duplicate” all the content of a single column in a table to a column of another table.
This works
INSERT INTO tbl2 (`column tbl2`)
SELECT column tbl1
FROM tbl1
This does not work
$this -> db -> insert('tbl2', ('column tbl2'));
$this -> db -> select('column tbl1');
$this -> db -> from('tbl1');
Thanks.
