有人可以告诉我,如果有可能与积极的记录 – 以及如何?
$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();
问题是,’table2.fi_second_id’始终被视为字符串 – 而不是数据库字段.用’where’来试试这个问题 – 这是同样的问题.
谢谢