我有以下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)