1

我尝试了不同的连接类型,但不知道应该使用哪种类型。我想计算每篇文章的评论数。

$select = $this->_db->select()
        ->from($this->_name)
        ->joinLeft('categories', 'categories.cat_id = ' . $this->_name . '.category', array('category_name' => 'name'))
        ->joinLeft('comments', 'comments.post_id = ' . $this->_name. '.post_id', array('num_comments' => 'COUNT(*)'))
        ->group($this->_name.'.post_id')
        ->limit(3)
        ->order("pubDate DESC");
if($category_id > 0) $select->where("category = ?", $category_id);
if($last_pub_date > 0) $select->where("$this->_name.pubDate < ?", $last_pub_date);

我也将这种方法用于我的 Twitter 之类的分页,因此$last_pub_date也是如此。看起来不错,joinLeft()但当然,如果文章查询没有评论,则获取计数为 1 而不是 0。我尝试使用其他连接类型,但如果没有评论,则不会提取整行或$this->_db->order("pubDate DESC")无法正常工作。我也尝试过使用子查询,但我不确定我是否按原样写了它。

4

1 回答 1

2

左连接是正确的,但你需要使用COUNT(comment_id)而不是COUNT(*). COUNT(*)将返回行数,即使没有评论也将是一。COUNT(comment_id)将返回非NULL comment_id值的数量,这应该是您正在寻找的。

http://dev.mysql.com/doc/refman/5.1/en/group-by-functions.html#function_count

于 2012-06-24T13:52:07.353 回答