我的问题是有多少帖子有未读评论?
邮政表格
------------------
id标题说明
-- ------- ----------
1你好,娜丽
2你好你好纳瑞
3再见,娜丽
注释表
-----------------
id Post_id comment用户名已读(r-已读,n-未读)
---- ------------ -------------- ---------------- ------------
1 1 ggggjhgh帕万r酒店
2 2格格赫格赫纳文
3 1 Hjhjkhjhjj阿杰
4 1 JKHJJJJJ阿杰
5 1 ggjghjghg kalyan北
6 2 BGJGJKHHJJ naveen北
7 1 KJHKJHJHJK praveen r公司
8 2 MBJJJJJJK内存r
92GJHGGHG内存n
我的问题是有多少帖子有未读评论?
如果我知道我有2个帖子有新的评论,我会阅读这些评论,我会把它作为阅读
最佳答案
请尝试以下操作:
select count(1) from comment where read_sts ='n' group by post_id
另外,如果你想找到带有未读评论的文章标题,你可以:
select id, title from post where id in (select post_id from comment where read_sts ='n')