gpt4 book ai didi

json - 在单个查询中将 JSON 写入表

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

我在 PSQL 表中有一个 JSONB 列,其中包含大型 JSON 对象(最多 700kb)。我想在对象中获取一个嵌套数组并将其写入 PSQL 表。所有这些充其量只是在普通的 PSQL 中。有办法吗?

{"a": "foo", "b": [{"c": 123}, {"c": 456}]}

// should become

id | data
1 | {"c": 123}
2 | {"c": 456}

最佳答案

假设您的表的名称是 table_name 并且 jsonb 列的名称是 jsonbColumn,这将起到作用:

with items as (
select jsonb_array_elements(jsonbColumn -> 'b') as item
from table_name)
select ROW_NUMBER() OVER () AS id, * from items

关于json - 在单个查询中将 JSON 写入表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51880853/

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