我的评论表如下:
| ID | article_id | user_id | ...
|-------------------------------|
| 1 | 1 | 1 | ...
| 2 | 2 | 2 | ...
| 3 | 2 | 1 | ...
| 4 | 3 | 2 | ...
我需要获得评论最多的前5篇文章。当我在SQL控制台SELECT 'article_id', count(*) as 'total' FROM 'comments' GROUP BY 'article_id' ORDER BY 'total' LIMIT 5
中使用此语句时,我得到了我想要的一切。但是我需要用NotORM做这个,这就是我坚持的地方。这是我获取这些文章的功能:
function getBestActive() {
$items = $this->db->comments()
->select("article_id, count(*) as 'total'")
->order("total DESC")
->limit(5);
$articles = array();
foreach($items as $item) {
$article = $this->db->article('id', $item['article_id'])->fetch();
$article['img'] = "thumb/{$article['uri']}.jpg";
$article['comments'] = $item['total'];
$articles[] = $article;
}
return $articles;
}
但它只返回一篇文章(评论最多),我需要最多5篇文章。或者是否可以使用NotORM执行自定义SQL语句(也可以回答)?
答案 0 :(得分:0)
哦,现在我明白了。我忘了添加group()
功能。所以使用这个选择一切正常:
$items = $this->db->comments()
->select("article_id, count(*) as 'total'")
->group("article_id")
->order("total DESC")
->limit(5);