我正在通过示例学习bigquery:personsData https://developers.google.com/bigquery/docs/data#nested
在此示例中,有一个名为children
的重复字段。这是否可以进行查询以找出谁有孩子叫“Josh”和孩子叫“Jim”
我尝试了以下查询,但没有返回结果:
select fullName from [xxx.xx] where children.name = "Jane" and children.name = "John"
答案 0 :(得分:2)
以上查询有几个问题。
尝试:
select fullName from PersonsData.personsdata where children.name = "Jane" or children.name = "John"
使用Google数据集