Flink这样子的行转列的数据 我一条id为445的过来 但是其余的字段 不想变成空 有什么办法吗?-[阿里云_云淘科技]

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函数将空值替换为其他值,例如空字符串。这样,当某个字段没有匹配到时,它将被替换为空字符串,而不是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。

本文来自投稿,不代表新手站长_郑州云淘科技有限公司立场,如若转载,请注明出处:https://www.cnzhanzhang.com/19575.html

(0)
匿名
上一篇 2024年1月4日
下一篇 2024年1月4日

相关推荐

新手站长从“心”出发,感谢16年您始终不离不弃。