是否有可能在左连接条件下有一个数组? 因为我在一个表名中有3个条件
示例:
这是我的代码如何工作的示例
->join('table as t1','condition here','left')
->join('table as t2','condition here','left')
->join('table as t3','condition here','left')
但是我想让它变得简单并避免冗余,是否可以在连接中使用数组?
->join('table_name',array(),'left');
任何想法都将不胜感激
答案 0 :(得分:0)
使用可以像下面那样使用
$this->db->from('table as t');
$this->db->join('table as t1','t1.coloum1 = t.coloum1 AND t1.coloum2 = t.coloum2 AND t1.coloum3 = t.coloum3','left')