我只想回应文章并按用户评论的最多数量对其进行排序。这是我的两张桌子
tbl_articles
article_id | articles_title |
1 | This is 1st |
2 | This 2nd |
tbl_comment:
comment_id | user_id | article_id | comment_msg
1 | 1 | 1 | my comment1
2 | 1 | 2 | my comment2
3 | 2 | 1 | some comment1
如何加入这些表并强制产生这样的结果
article_id|articles_title| comment_count |
1 | This is 1st | 2 |
2 | This 2nd | 1 |
谢谢