在大查询中更新数组字段列[重复]
Posted
技术标签:
【中文标题】在大查询中更新数组字段列[重复]【英文标题】:Updating an array field columns in big query [duplicate] 【发布时间】:2020-05-26 17:52:34 【问题描述】:问题陈述:
如何在大查询中更新数组字段
下面是我的桌子
Test_table
-------------------------------
file.fileName | file.count
-------------------------------
abc.txt. | 100
-------------------------------
从上表中我需要更新文件名和计数字段
架构:
"name": "file"
"type" : "record"
"mode" : "repeated"
"fields" :[
"name": fileName
"type": string
"mode" :nullable
,
"name": count
"type": string
"mode" :nullable
]
有人可以帮我了解如何在此表上执行更新查询
【问题讨论】:
【参考方案1】:你不能这样做吗?
update t
set file[safe_offset(1)].filename = ?,
file[safe_offset(1)].count = ?
【讨论】:
以上是关于在大查询中更新数组字段列[重复]的主要内容,如果未能解决你的问题,请参考以下文章