我使用https://developers.google.com/bigquery/docs/data#nested文档提供的数据personsData.json和schema personsDataSchema.json在Bigquery中创建了一个表。
此查询正常工作:
SELECT children.* FROM dw_test.persons
但是以下查询提供了错误Error: 0.0 - 0.0: Unable to determine schema of SELECT * in this query
:
SELECT citiesLived.* FROM dw_test.persons
据我所知,解决方法是简单列出citiesLived的所有字段:
SELECT citiesLived.place, citiesLived.yearsLived FROM dw_test.persons
但是在记录有很多字段的情况下,列出所有字段变得很麻烦。
有人可以帮忙吗?
非常感谢你。