gpt4 book ai didi

node.js 和 postgresql 更新嵌套的 JSON 键

转载 作者:行者123 更新时间:2023-11-29 12:25:24 25 4
gpt4 key购买 nike

我的数据库中有一个名为“json”的表,有两列:“id”和“data”

目前只有一行存储在其中,id 为 1,data 为 JSON 结构:

{
"elements": {
"nodes": [
{
"data": {
"id": "n0",
"name": "Name here",
"color": "#FFFFFF"
}
},
{
"bob": "hello"
}
]
}
}

我需要更新 json 的一个键:“Name here”必须变为“updated”

这是我尝试过的:

db.query("UPDATE json SET $1 WHERE data->'elements'->'nodes'->0->'data'->'name'=$2", ['updated', 'Name here'])

但是我得到一个错误:

syntax error at or near "'updated'"

最佳答案

使用 Postgres 时 JSON navigators如果您想进行这样的比较,请务必使用 text 检索导航器 ->>> 终止您的链:

UPDATE json SET $1 WHERE data->'elements'->'nodes'->0->'data'->>'name'=$2

这应该允许将 texttext 而不是 json 进行比较。

我认为您也可以使用 #>> 一次性挖掘整个路径:

UPDATE json SET $1 WHERE data#>>'{elements,nodes,0,data,name}'=$2

关于node.js 和 postgresql 更新嵌套的 JSON 键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42017583/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com