SELECT field1, field2
FROM table1
JOIN table2 ON (table2.field1=table1.field1 OR table2.field2=table1.field2)
CodeIgniter でこのクエリを記述する方法は? JOIN 条件に括弧が必要です。
CodeIgniter サンプル
$this->db->select("field1,field2")
$this->db->from("table1")
$this->db->join("table2","(table2.field1=table1.field1 or table2.field2=table1.field2)")
しかし、これはエラーを生成します。