0

> * 1. 我需要在活动记录中写这个 *

我需要加入这3张表,但加入的条件非常有选择性

$this->db->select(name);
$this->db->from('table0');
$this->db->join('table1','(table1.id=0 AND table0.feild1 = table1.feild1) OR (table1.id=1 AND table0.feild2 = table1.feild2)') // <--- how to write this is my question

我可以做一个简单的连接,但主要问题是实现我上面提到的连接条件。这也是非常非常的一小部分!大查询,所以我真的无法将其更改回本机 sql 查询,例如:

$this->db->query('//entire sql query'); //cant do this, need to write ACTIVE RECORDS

当我写活动记录时,萤火虫给我一个错误说:

您的 SQL 语法有错误;检查与您的 MySQL 服务器版本相对应的手册,以获取在 ') 附近使用的正确语法或

有什么建议么 ?

4

1 回答 1

0

老实说,我不知道这是可能的。CI 不使用真正的 Active Record,因此每种方法都有非常严格的参数,我看不到任何可以被欺骗来执行您需要的任务的方法。

我会尝试重新编写您的查询:

$this->db->select(name);
$this->db->from('table0');
$this->db->join('table1','(table1.id=0 AND table0.feild1 = table1.feild1)', LEFT);
$this->db->join('table1','(table1.id=1 AND table0.feild2 = table1.feild2)', LEFT);
$this->db->where('(table1.id=0 AND table0.feild1 = table1.feild1)');
$this->db->or_where('(table1.id=1 AND table0.feild2 = table1.feild2)');

我相信这个查询会返回正确的值,但你肯定会想要彻底测试它。希望这至少可以为您指明正确的方向。

于 2012-08-31T15:00:24.797 回答