一个SQL语句获得某人参与的帖子及在该帖得分总
select a.*,b.SumPoint from Expert_Topic_Index a,(
select TopicID, Sum(Point) as SumPoint from expert_reply_index
where PostUserName = 'ghj1976'
Group by TopicI【文章转自:http://www.1234xp.com/xjp.html 复制请保留原URL】D
Having Sum(Point) > 0
) as b
where a.TopicID = b.TopicID
这里其实就是把一个查询的结果放到新的一个查询中了。
另外 Having 对分组结果进行的查询。
【本文由:防ddos攻击 http://www.558idc.com/gfcdn.html提供,感恩】
select TopicID, Sum(Point) as SumPoint from expert_reply_index
where PostUserName = 'ghj1976'
Group by TopicI【文章转自:http://www.1234xp.com/xjp.html 复制请保留原URL】D
Having Sum(Point) > 0
) as b
where a.TopicID = b.TopicID
这里其实就是把一个查询的结果放到新的一个查询中了。
另外 Having 对分组结果进行的查询。
【本文由:防ddos攻击 http://www.558idc.com/gfcdn.html提供,感恩】