当前位置 : 主页 > 数据库 > mssql >

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

来源:互联网 收集:自由互联 发布时间:2021-04-05
selecta.*,b.SumPointfromExpert_Topic_Indexa,( selectTopicID,Sum(Point)asSumPointfromexpert_reply_index wherePostUserName='ghj1976' GroupbyTopicID HavingSum(Point)0 )asb wherea.TopicID=b.TopicID 这里其实就是把一个查询的结果放到
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 对分组结果进行的查询。
网友评论