我想使用 mysql 获得每个帖子的评论数。
我有两张表,一张是post表,一张是comment表。Post 表有id
,title
和content
字段,而评论有id
, post_id
,author
和comment
字段。
想要达到的结果就像
---------------------------------------------
Title Comment Count
---------------------------------------------
My fancy post 2
---------------------------------------------
如果您对我的问题感到困惑,请告诉我。