我正在使用 SNOW_FLAKE 并尝试查询以列名 nested_colmn 下的元素数组形式存储的数据,例如:
nested_colmn
[
{
"firstKey": "val1",
"secondKey": 2555,
"thirdKey": false,
"fourthkey": "otrvalue"
},
{
"firstKey": "val2",
"secondKey": 255221,
"thirdKey": true,
"fourthkey": "otrvalu"
}
]
如果我这样做,上面的数组将作为一个完整的行返回
Select nested_colmn from table_name
现在我想仅从 Attributes 列中查询/获取firstkey (nested_colmn.firstkey) 的结果。如何构建查询以从数组中检索单个自定义元素,而不是全部获取。如果对此有任何想法,请帮助我