Hive 的collect_set使用详解
Posted wingler
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Hive 的collect_set使用详解相关的知识,希望对你有一定的参考价值。
Hive 的collect_set使用详解
select a,collect_set(b) as bb from t where b<=‘xxxxxx‘ group by a
a1,["b1","b2"]
a2,["b1","b2","b3","b4"]
可以按照这个返回的数组做文章,即为
select * from (select a,collect_set(b) as bb from t where b<=‘xxxxxx‘ group by a
) where size(tmp.bb)=1 and
tmp
.bb[0]=‘xxxxxxxx‘;
以上是关于Hive 的collect_set使用详解的主要内容,如果未能解决你的问题,请参考以下文章
大数据之Hive:Hive函数之collect_set()函数
hive中对多行进行合并—collect_set&collect_list函数