如何使用CODEIGNITER使数组内部左连接条件

时间:2018-04-12 02:40:46

标签: php codeigniter

是否有可能在左连接条件下有一个数组? 因为我在一个表名中有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');

任何想法都将不胜感激

1 个答案:

答案 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')