2.5版本 当GROUP_CONCAT 只有单个值时,会将分隔符拼接上去

– 传不了截图 返回结果: 1,test|
select id, GROUP_CONCAT(value,’|’)
from(
select 1 as id, ‘test’ as value
) a
group by id