0

我需要使用 codeigniter 活动记录对左连接查询执行多个 on 子句。我写了这段代码:

$this->db->join('table1', 'table1.col1 = table2.id', 'left');
$this->db->where_not_in('table.col2', $list);

通过执行此代码点火器添加 where not in 子句,而我需要添加与左连接相关的 ON 子句。如果可能的话,我想使用活动记录。

4

1 回答 1

1
$this->db->join('table1', 'table1.col1 = table2.id AND col2 NOT IN ('.implode(',', $list).')', 'left');
于 2012-11-16T13:10:19.900 回答