我需要使用 codeigniter 活动记录对左连接查询执行多个 on 子句。我写了这段代码:
$this->db->join('table1', 'table1.col1 = table2.id', 'left');
$this->db->where_not_in('table.col2', $list);
通过执行此代码点火器添加 where not in 子句,而我需要添加与左连接相关的 ON 子句。如果可能的话,我想使用活动记录。
我需要使用 codeigniter 活动记录对左连接查询执行多个 on 子句。我写了这段代码:
$this->db->join('table1', 'table1.col1 = table2.id', 'left');
$this->db->where_not_in('table.col2', $list);
通过执行此代码点火器添加 where not in 子句,而我需要添加与左连接相关的 ON 子句。如果可能的话,我想使用活动记录。