我有两个model
。Post
和' Comment'.
Post
has_may comments
.
查询:我想得到的评论的最大计数在这篇文章
这应该由rail
查询完成
@post = Post.
joins(:comments).
select('posts.*, count(comments.id) as comment_count').
group("posts.id").
first