欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

一个SQL语句获得某人参与的帖子及在该帖得分总和

程序员文章站 2023-10-27 09:52:58
select a.*,b.sumpoint from expert_topic_index a,( select topi...
select a.*,b.sumpoint from expert_topic_index a,(
select topicid, sum(point) as sumpoint from expert_reply_index
where postusername = 'ghj1976'
group by topicid
having sum(point) > 0
) as b
where a.topicid = b.topicid

这里其实就是把一个查询的结果放到新的一个查询中了。

另外 having 对分组结果进行的查询。