Codeigniter Active Record HAVING / WHERE db.field = db.field

16,439

I think that you want the following:

$this->db->having('table1.second_id = table2.fi_second_id',false);

You may or may not apply the false parameter if you don't need escaped SQL queries.

Share:
16,439
Petra
Author by

Petra

Updated on June 09, 2022

Comments

  • Petra
    Petra almost 2 years

    Can someone tell me, if this is possible with active record - and how??

    $this->db->select('*');
    $this->db->from('table1');
    $this->db->join('table2', 'table1.id = table2.fi_id', 'left');
    $this->db->having('table1.second_id','table2.fi_second_id', false);
    $query = $this->db->get();
    

    The problem ist, that 'table2.fi_second_id' is always treated as a string - not as a database field. Tried this with 'where' also - it's the same problem.

    Thx