22,302
社区成员




select b.comment_id,count(*)as seq from b inner join c on b.comment_id=c.comment_id where b.content_id="值" group by b.comment_id order by seq desc
select comment_id,cnt from (
select b.comment_id,sum(prasieID) as cnt from b inner join c on b.comment_id=c.comment_id
group by c.comment_id
where b.content_id=N'xxxxxx')
order by cnt desc