第1个回答 推荐于2016-02-19
select c.commentid,c.orderid,c.fromuserid,u1.name,u1.contet,u2.name,u2.content
from common c join user u
on c.fromuserid=u.userid
join user u1
on c.fromuserid=u1.userid
where exists (select 1 from comment m
where c.commentid<>m.commentid
and c.orderid=m.orderid)本回答被提问者和网友采纳