hive - concat_ws 函数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hive - concat_ws 函数相关的知识,希望对你有一定的参考价值。
参考技术A concat_ws 函数在连接字符串的时候,只要有一个字符串不是NULL,就不会返回NULL,concat_ws 函数需要指定分隔符。hive> select concat_ws('-','a','b');
a-b
hive> select concat_ws('-','a','b',null);
a-b
hive> select concat_ws('','a','b',null);
ab
hive中多行合并一行concat_ws(去重及不去重)
原始数据:
id score
aaa 1
aaa 2
aaa 3
预期结果:
id score
aaa 1,2,3
可使用
select id,concat_ws(',',collect_set(cast(colname as string)))
from table group by id;
使用concat_ws函数,需将字段转成string格式,collect_set会对该列进行去重,如果不需要去重,可使用collect_list参数代替。
创作打卡挑战赛 赢取流量/现金/CSDN周边激励大奖以上是关于hive - concat_ws 函数的主要内容,如果未能解决你的问题,请参考以下文章
Hive concat,concat_ws 遇到NULL 用法