select c1.序号,c1.m说明 + CHAR (13) + c2.说明
from ( select 序号,min(说明) as m说明
from yourTable 
group by 序号) c1 left join 
(select a.序号,a.说明
from yourTable a  left join (select 序号,min(说明) as m说明 from yourTable group by 序号) b
 on a.序号=b.序号 and a.说明=b.m说明
where b.序号 is null) c2
on c1.序号=c2.序号 
== 思想重于技巧 ==