我有以下三个表。我正在尝试像这样在这三个表之间相互链接(加入)-
链接 1
table1.code=table2.account-code
table1.code=table3.t-code
table2.voucher_no=table3.voucher_no
我试图以 Codeignitier 的方式进行查询,但我收到一条错误消息,指出 table1 不是唯一的或类似的东西。
这是我尝试过的(并得到了错误)
$this->db->select('*');
$this->db->from('table2');
$this->db->join('table3', 'table2.voucher_no = table3.voucher_no');
$this->db->join('table1', '(table1.code = table2.account_code)');
$this->db->join('table1', '(table1.code = table3.t_code)');
请你告诉我我哪里做错了吗?