2
から値を削除し、削除する方法はあります/ネストされたJSONのキーオブジェクト(ない配列) は、例えば更新し、次のJSON:Postgresqlの - 更新またはネストされたjsonb要素
{
"top": {
"nested": {
"leaf": 1
}
}
}
どのように私は削除します/リーフ要素を更新しますか? documentationから
SELECT jsonb '{"top": {"nested": {"leaf" : 1}}}' #- '{top,nested,leaf}';
┌─────────────────────────┐
│ ?column? │
├─────────────────────────┤
│ {"top": {"nested": {}}} │
└─────────────────────────┘
(1 row)
:
は私が
SELECT jsonb '{"top": {"nested": {"leaf" : 1}}' - '{top,nested,leaf}'
をフィールドまたは要素を削除します。ありがとう – LiorH