第一种实现
select a.id,group_concat(a.name) from table a
group by a.id
第二种实现
select a.id,a.name from table a
name对应你要拼接的字段
abc去重 按bc并上 bcd按bc聚合 这个思路?