预查询:取消嵌套ARRAY类型的列



我有以下Presto查询:

select team from my_table

输出为:

team
-------
[John, Amy]
[David, Mary, Alex]
[Josh, Ann]

然后我想看到所有的人都喜欢:

person
----------
John
Amy
David
Mary
Alex
Josh
Ann

我尝试使用UNNEST类似:

select UNNEST(team) from my_table

但是得到了以下语法错误:

mismatched input 'unnest'. Expecting: '*', 'ALL', 'DISTINCT', <expression>, <identifier>

知道我做错了什么吗?谢谢

我认为您想要的语法是:

select t.team
from my_table cross join
unnest(team) as t(team)

相关内容

  • 没有找到相关文章

最新更新