我的评论表如下所示:
| 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;
}
但它返回给我的数组只有 1 篇文章(评论最多),我需要最多 5 篇文章。或者是否可以使用 NotORM 执行自定义 SQL 语句(也可以是答案)?