gpt4 book ai didi

mysql group_concat 为空字段添加分隔符

转载 作者:行者123 更新时间:2023-11-29 01:16:41 33 4
gpt4 key购买 nike

这里有一个示例模式: http://sqlfiddle.com/#!2/c0723a/2

查询是通过id从测试组中选择id,group_concat(val)

结果是

ID GROUP_CONCAT(VAL)
1 ,64,66,,203,214,204

我想像这样为空记录连接不带逗号的 val 字段

ID GROUP_CONCAT(VAL)
1 64,66,203,214,204

最佳答案

只需使用替换

select id,replace(group_concat(val),',,',',') from test group by id

或者你可以使用IF

select id,group_concat(if(val ='',null, val)) from test group by id

或者您可以使用NULLIF

select id,group_concat(Nullif(val,'')) from test group by id

Fiddle Demo

关于mysql group_concat 为空字段添加分隔符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22527235/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com