duanpei8853 2013-01-04 15:04
浏览 58
已采纳

在codeigniter中加入两个数据库的查询

I need to write a join query of two tables from two databases and fetch the joined data. For eg, consider I have a database db1 which has some tables named companies, plans, customers. Suppose I need to join the two tables companies and plans with another table 'cdr' on another database db2 by grouping them using a similar column.

The query which I'm running right now is given below:

function get_per_company_total_use ($custid)
        {         
                 $this->DB1->select('ph_Companies.CompanyName');
                 $this->DB1->where('ph_Companies.Cust_ID', $custid);
                 $this->DB2->select_sum('cdr.call_length_billable')->from('cdr');
                 $this->DB2->group_by('cdr.CompanyName');
                 $this->db->join('Kalix2.ph_Companies', 'Kalix2.ph_Companies.CompanyName = Asterisk.cdr.CompanyName');
                 $query = $this->db->get();
                 if($query->result()){
                     foreach ($query->result() as $value) {
                         $companies[]= array($value->CompanyName,$value->call_length_billable);
                          }
                     return $companies;
                 }
                 else 
                     return FALSE;
        }

But my query is not fetching the data and throwing an error. This same query, I have run on a single database and is working. But I need help to find how this can be done with two databases.

  • 写回答

2条回答 默认 最新

  • douyan4470 2013-01-04 15:45
    关注

    You can just give the following if you need to join two database tables:

    function get_per_company_total_use ($custid)
            {         
                     $this->db->select('Kalix2.ph_Companies.CompanyName');
                     $this->db->where('Kalix2.ph_Companies.Cust_ID', $custid);
                     $this->db->select_sum('Asterisk.cdr.call_length_billable')->from('Asterisk.cdr');
                     $this->db->group_by('Asterisk.cdr.CompanyName');
                     $this->db->join('Kalix2.ph_Companies', 'Kalix2.ph_Companies.CompanyName = Asterisk.cdr.CompanyName');
                     $query = $this->db->get();
                     if($query->result()){
                         foreach ($query->result() as $value) {
                             $companies[]= array($value->CompanyName,$value->call_length_billable);
                              }
                         return $companies;
                     }
                     else 
                         return FALSE;
            }
    

    Here actually you need not give the connection variable DB1 or DB2, just give $this->db.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥30 STM32 INMP441无法读取数据
  • ¥100 求汇川机器人IRCB300控制器和示教器同版本升级固件文件升级包
  • ¥15 用visualstudio2022创建vue项目后无法启动
  • ¥15 x趋于0时tanx-sinx极限可以拆开算吗
  • ¥500 把面具戴到人脸上,请大家贡献智慧
  • ¥15 任意一个散点图自己下载其js脚本文件并做成独立的案例页面,不要作在线的,要离线状态。
  • ¥15 各位 帮我看看如何写代码,打出来的图形要和如下图呈现的一样,急
  • ¥30 c#打开word开启修订并实时显示批注
  • ¥15 如何解决ldsc的这条报错/index error
  • ¥15 VS2022+WDK驱动开发环境