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