标签: presto
我正在使用
select bar_tbl.thing1 from foo cross join unnest(bar) as t(bar_tbl)
得到错误Error Query failed: Cannot unnest type: row
Error Query failed: Cannot unnest type: row
为什么?
栏栏如下{thing1=abc, thing2=def}
{thing1=abc, thing2=def}
答案 0 :(得分:1)
原来我试图扩展一行,这没有意义。 我应该刚刚完成
select bar.thing1 from foo