I want to implement a sql query using CodeIgniter Active Record class. The query looks like this..
INSERT california_authors (au_id, au_lname, au_fname)
SELECT au_id, au_lname, au_fname
FROM authors
WHERE State = 'CA'
Is this possible in CodeIgniter without using the $this->db->query method?
Solution:
$this->db->select('au_id, au_lname, au_fname');
$this->db->from('california_authors');
$this->db->where('state', 'CA');
$query = $this->db->get();
if($query->num_rows()) {
$new_author = $query->result_array();
foreach ($new_author as $row => $author) {
$this->db->insert("authors", $author);
}
}
Regards
I think you are talking about a a SELECT … INSERT query, on the active record class there is not a method to do that, but there are two ways to do it
1)
As you say
And 2) you can can do this, using what Calle said,