一个SQL语句获得某人参与的帖子及在该帖得分总和
时间:2020-10-31 14:15 作者:admin610456
selecta.*,b.SumPointfromExpert_Topic_Indexa,(
selectTopicID,Sum(Point)asSumPointfromexpert_reply_index
wherePostUserName='ghj1976'
GroupbyTopicID
HavingSum(Point)>0
)asb
wherea.TopicID=b.TopicID
这里其实就是把一个查询的结果放到新的一个查询中了。
另外Having对分组结果进行的查询。
(责任编辑:admin)