Flink这样子的行转列的数据 我一条id为445的过来 但是其余的字段 不想变成空 有什么办法吗 ?除了每个字段分开写入 ,STRING_AGG(distinct case when t3.id = 413 then t2.name end )
,STRING_AGG(distinct case when t3.id = 418 then t2.name end )
,STRING_AGG(distinct case when t3.id = 421 then t2.name end )
,STRING_AGG(distinct case when t3.id = 423 then t2.name end )
,STRING_AGG(distinct case when t3.id = 425 then t2.name end )
,STRING_AGG(distinct case when t3.id = 428 then t2.name end )
,STRING_AGG(distinct case when t3.id = 438 then t2.name end )
,STRING_AGG(distinct case when t3.id = 440 then t2.name end )
,STRING_AGG(distinct case when t3.id = 443 then t2.name end )
,STRING_AGG(distinct case when t3.id = 445 then t2.name end )
可以使用COALESCE
函数来处理这个问题。COALESCE
函数会返回第一个非空值,如果所有值都为空,则返回NULL。这样,当某个字段的值为空时,COALESCE
函数会返回其他字段的值,而不是NULL。
修改后的代码如下:
,STRING_AGG(COALESCE(case when t3.id = 413 then t2.name end, ''))
,STRING_AGG(COALESCE(case when t3.id = 418 then t2.name end, ''))
,STRING_AGG(COALESCE(case when t3.id = 421 then t2.name end, ''))
,STRING_AGG(COALESCE(case when t3.id = 423 then t2.name end, ''))
,STRING_AGG(COALESCE(case when t3.id = 425 then t2.name end, ''))
,STRING_AGG(COALESCE(case when t3.id = 428 then t2.name end, ''))
,STRING_AGG(COALESCE(case when t3.id = 438 then t2.name end, ''))
,STRING_AGG(COALESCE(case when t3.id = 440 then t2.name end, ''))
,STRING_AGG(COALESCE(case when t3.id = 443 then t2.name end, ''))
,STRING_AGG(COALESCE(case when t3.id = 445 then t2.name end, ''))
这样,当某个字段的值为空时,COALESCE
函数会返回空字符串,而不是NULL。
你可以使用coalesce
函数将空值替换为其他值,例如空字符串。这样,当某个字段没有匹配到时,它将被替换为空字符串,而不是NULL。以下是修改后的代码:
,STRING_AGG(distinct coalesce(case when t3.id = 413 then t2.name end, ''))
,STRING_AGG(distinct coalesce(case when t3.id = 418 then t2.name end, ''))
,STRING_AGG(distinct coalesce(case when t3.id = 421 then t2.name end, ''))
,STRING_AGG(distinct coalesce(case when t3.id = 423 then t2.name end, ''))
,STRING_AGG(distinct coalesce(case when t3.id = 425 then t2.name end, ''))
,STRING_AGG(distinct coalesce(case when t3.id = 428 then t2.name end, ''))
,STRING_AGG(distinct coalesce(case when t3.id = 438 then t2.name end, ''))
,STRING_AGG(distinct coalesce(case when t3.id = 440 then t2.name end, ''))
,STRING_AGG(distinct coalesce(case when t3.id = 443 then t2.name end, ''))
,STRING_AGG(distinct coalesce(case when t3.id = 445 then t2.name end, ''))
这样,当某个字段没有匹配到时,它将被替换为空字符串,而不是NULL。
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。
实时计算Flink版是阿里云提供的全托管Serverless Flink云服务,基于 Apache Flink 构建的企业级、高性能实时大数据处理系统。提供全托管版 Flink 集群和引擎,提高作业开发运维效率。