我有以下表格:

   fss_post(post_id,text)
   fss_comment(idComment, post_id, text)


是否可以编写一个查询,为每个post_id赋予一行结果,并为此帖子提供总评论数?

例:

    post_id       comment_count
    101010        5
    101011        0


等等...
谢谢。

最佳答案

select
p.post_id,count(*) 'comment_count'
from
fss_post p
left join fss_comment c on p.post_id = c.post_id
group by p.post_id

关于mysql - 如何计算总评论?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19327390/

10-09 15:24