duange2971 2018-08-16 20:17
浏览 55
已采纳

在数据库中选择两个数据 - CodeIgniter3

I have a problem with extracting data from the database.

My application is based on CodeIgniter 3 and AngularJS.

I have two tables in my database:

1) domains 2) organic search

In domains and organic_search, I have view_id columns - which are related to each other.

My problem: I connect to the database, when I go to a given domain URL, I get the domain ID (from the table domains), however, the data from the organic_search table is not collected. I have no idea how to connect the domains.iD relationship with domains.viewId = organic_search.viewId.

Below my code:

Controller domains.php

{
    $this->load->model('admin/analytics_model');
    $result = $this->analytics_model->get_by_domain_id($id);
    echo '{"records":' . json_encode( $result ) . '}';
}

Controller analytics.php

public function index($id = false)
{
    $result = $this->analytics_model->get($id);
    echo '{"records":' . json_encode( $result ) . '}';
}

Model analytics_model.php

public function get_by_domain_id($id)

{
        $this->db->where('id', $id);
        $q = $this->db->get('organic_search');
        $q = $q->result();

        return $q;
}
  • 写回答

1条回答 默认 最新

  • dongwo5449 2018-08-16 20:58
    关注

    Use a Join

    $this->db->join('domains AS d', 'd.viewId = o.viewId'); 
    $this->db->where('o.id', $id);
    return $this->db->get('organic_search AS o')->result();
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 DS18B20内部ADC模数转换器
  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动