Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
by looking into your code everything looks fine but i suggest to post the complete model code so it would be more clear... – Shayan Husaini Jul 6 '12 at 8:00
Is there somewhere in the code $this->db->select('id1');? Not only in these two functions. – Yan Jul 6 '12 at 9:14

1 Answer

Try running:

$this->db->flush_cache() before $this->db->select('id2')

share|improve this answer
I tried it and it still doesn't work. – Eric Jul 5 '12 at 23:23
You have to be selecting 'id' somewhere else too, because there's no reason for id to show. – Steven Lu Jul 5 '12 at 23:27
It cannot be mixed up because function1() comes from one Model class, and function2() comes from another, so in function2(), I know for sure that I'm only selecting id2. I really don't know what goes wrong here. – Eric Jul 5 '12 at 23:59
You're $this->db model is singular and can be accessed by any model. Meaning, two models can affect the same database call. – Steven Lu Jul 6 '12 at 0:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.