我有两张表t1
和t2
。
t1
有三个颜色a
,b
,c
和t2
有两个颜色x
,y
。< / p>
我想在t2.x=t1.c
上加入这两个表格。虽然t1.c
为null
时出现了真正的问题,但这对我有用。我该如何解决这个问题。我正在使用Codeigniter Active Record类和mysql。
答案 0 :(得分:3)
答案 1 :(得分:3)
在Code Igniter中 - 您需要指定join函数的第3个参数。例如:
$this->db->join('t2', 't1.x = t2.c', 'left');