我正在使用

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}

最佳答案

原来我试图扩大行,这没有任何意义。
我应该做的

select bar.thing1
from foo

10-06 06:41