I have a function that needs to run 2 queries. The first query runs fine. The second one is not because it includes a column from the previous query, which is not from the same table.
The first query:
function1($id) {
$sql = "SELECT id FROM table1 WHERE id2 = $id";
return($this->db->query($sql));
}
The second query:
function2() {
$this->db->select('id2');
$this->db->from('table2');
$this->db->where('col1', '1');
$this->db->limit($random_number, 1);
return($this->db->get());
}
The calling function:
function() {
$rs1 = function($id)->result_array(); // runs ok.
$rs2 = function2()->result_array(); // error.
}
The error message:
A Database Error Occurred
Error Number: 1054
Unknown column 'id' in 'field list'
SELECT `id`, `id2` FROM (`table2`) WHERE `col1` = '1' LIMIT 1, 30
The column id is not even in the second query, but it's included in the result. How do I solve this problem? Thank you.
$this->db->select('id1');? Not only in these two functions. – Yan Jul 6 '12 at 9:14