有人可以告诉我,如果这可能与活动记录 - 以及如何?
$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'试过这个 - 这是同样的问题。
谢谢