错误查询失败:无法删除类型:行

时间:2018-04-20 21:00:36

标签: presto

我正在使用

运行查询
select bar_tbl.thing1
from foo
cross join unnest(bar) as t(bar_tbl)

得到错误Error Query failed: Cannot unnest type: row

为什么?

栏栏如下{thing1=abc, thing2=def}

1 个答案:

答案 0 :(得分:1)

原来我试图扩展一行,这没有意义。 我应该刚刚完成

select bar.thing1
from foo