gpt4 book ai didi

hive - 在配置单元中连接字符串列

转载 作者:行者123 更新时间:2023-12-03 08:55:07 25 4
gpt4 key购买 nike

我需要从表中连接 3 列,例如 a、b、c。如果列的长度大于 0,那么我必须连接所有 3 列并将其存储为以下格式的另一列 d。

1:a2:b3:c

我已尝试以下查询,但我不确定如何继续,因为结果为 null。

select a,b,c,
case when length(a) >0 then '1:'+a else '' end + case when length(b) > 0 then '2:'+b else '' end + case when length(c) > 0 then '3:'+c else '' end AS d
from xyz;

感谢帮助:)

最佳答案

使用concat()函数:

select a,b,c,
concat(
case when length(a)>0 then concat('1:',a) else '' end,
case when length(b)>0 then concat('2:',b) else '' end,
case when length(c)>0 then concat('3:',c) else '' end
) as d
from (--test dataset
select stack(4, 'a','b','c', --all
'','b','c', --one empty
null,'b','c', --null
'','','' --all empty
) as (a,b,c)
)your_data;

结果:

OK
a b c 1:a2:b3:c
b c 2:b3:c
NULL b c 2:b3:c

耗时:0.284 秒,已获取:4 行 - 最后一行为空

从 Hive 2.2.0 开始。您可以使用 || 运算符代替 concat:

select a,b,c,
case when length(a)>0 then '1:'||a else '' end||
case when length(b)>0 then '2:'||b else '' end||
case when length(c)>0 then '3:'||c else '' end as d

关于hive - 在配置单元中连接字符串列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56166474/

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