比较codeigniter中两个表的数据

Posted

技术标签:

【中文标题】比较codeigniter中两个表的数据【英文标题】:Compare data from two tables in codeigniter 【发布时间】:2013-05-19 07:25:11 【问题描述】:

我有两个表(评论和评估),我想在 codeigniter 中执行以下 mysql 查询。 这是 mySQL 查询:

SELECT COUNT(DISTINCT source) AS NumberOfEvaluations 
FROM COMMENT , EVALUATION
WHERE evaluation_id = EVALUATION.id AND EVALUATION.department_id = '$department_id' ;

这是我到达的更近的地方:

$this->db->select('count(DISTINCT(source))');  
$this->db->from('comment','evaluation');  

$this->db->where();  

$query=$this->db->get();  
return $query->num_rows();  

我的问题是我应该在 codeigniter 的 where 子句中检查什么?

【问题讨论】:

【参考方案1】:

尝试运行这段代码:

$this->db->select('count(DISTINCT(source))');  
$this->db->from('comment c','evaluation e');  

$this->db->where('c.evaluation_id','e.id');
$this->db->where('e.department_id', $department_id);

【讨论】:

以上是关于比较codeigniter中两个表的数据的主要内容,如果未能解决你的问题,请参考以下文章

使用 Codeigniter 生成带有 2 个表的 CSV

codeigniter,从不直接调用视图,有人可以解释一下

codeigniter 4 设置会话变量 $session = \Config\Services::session();全球

要使用codeigniter框架还是标准的php? [关闭]

在 CodeIgniter 中使用 jQuery 用另一个数据表填充数据表

出现致命错误 CodeIgniter CI_Controller not found