>백엔드 개발 >PHP 튜토리얼 >用group by 不符合条件他不返回数据

用group by 不符合条件他不返回数据

WBOY
WBOY원래의
2016-06-23 14:40:151006검색

如:posts帖子表
create table posts(
posts_id,
forumid, (论坛ID)
posts_title,
posts_postTime,
)

comments评论表
create table comments( 
comments_id,
postsid,
comments_content,
comments_postTime,
 )

我要的结果是:读出论坛ID为1的所有帖子,并统计每个帖子的评论总数.
我用count(comments_id) AS commentsNum 统计评论,但帖子在评论表没有评论,group by 就忽略了
posts_id  forumid   commentsNum
 1           1         4
 2           1         5
 3           1         4
 4           1         0
我要当帖子在评论表里没有评论的时候,返回0,或者返回Null也行啊,怎么弄


回复讨论(解决方案)

select a.posts_id,a.forumid,count(b.comments_id) as commentsNum  from posts a left join comments b on a.posts_id=b.postsidgroup by b.postsid having a.forumid=1

解决了,谢版主,有想到Having 却没去用 = = 

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.