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();
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度