我在我的代码点火器模型中使用这个连接
$this->db->select('e.name, p.projects');
$this->db->from('example as e');
$this->db->join('procure as p', e.id = p.id');
$this->db->where('e.cityid', '1');
$this->db->where('e.status', '0');
我没有单独的连接表。这是我的数据映射器,它没有提供任何输出。
我有两个表,我想对它们编写一个连接查询。我的控制器中有这个。
$example = new Example();
$example ->where_join_field('procure', FALSE);
更新
你能告诉我使用数据映射器连接三个表的片段吗?