在 Hive 中,我可以使用 explode
函数,但如何在 Impala 中使用?
我读了这个,但仍然不知道:
Is there a function equivalent to Hive's 'explode' function in Apache Impala?
这就是我在 Hive 中创建表的方式:
create table tb (arr_col array<string>)
insert into tb select array ('A','B') from (select 'temp') x
我的查询会出错:
select tb.arr_col from tb
..in select list returns a complex type 'ARRAY<STRING>'.
Only scalar types are allowed in the select list.
或者
select tb.arr_col.item from tb
ERROR: AnalysisException: Illegal column/field reference 'arr_col.item' with intermediate collection 'item' of type 'ARRAY<STRING>'
请指教最好的方法。
谢谢
最佳答案
这就是你在 Impala 中查询数组的方式,它可能等同于爆炸
select arr_col array.item from tb , tb.arr_col array ;
默认情况下,impala 使用名称“item”来访问原始数组的元素。在结构数组的情况下,您需要更改要访问的字段的“项目”。
关于sql - 在 Impala 中将数组列查询为行的解决方法,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50463020/