gpt4 book ai didi

json - PostgreSQL 嵌套 JSON 查询

转载 作者:IT老高 更新时间:2023-10-28 12:47:56 25 4
gpt4 key购买 nike

在 PostgreSQL 9.3.4 上,我有一个名为“person”的 JSON 类型列,其中存储的数据格式为 {dogs: [{breed: <>, name: <>}, {breed: <>, name: <>}]} .我想在索引 0 处检索狗的品种。这是我运行的两个查询:

不起作用

db=> select person->'dogs'->>0->'breed' from people where id = 77;
ERROR: operator does not exist: text -> unknown
LINE 1: select person->'dogs'->>0->'bree...
^
HINT: No operator matches the given name and argument type(s). You might need to add explicit type casts.

作品

select (person->'dogs'->>0)::json->'breed' from es_config_app_solutiondraft where id = 77;
?column?
-----------
"westie"
(1 row)

为什么需要类型转换?不是效率低吗?我做错了什么还是对 postgres JSON 支持有必要?

最佳答案

这是因为运算符 ->> 将 JSON 数组元素作为文本获取。您需要强制转换将其结果转换回 JSON。

您可以使用运算符 -> 消除这种多余的强制转换:

select person->'dogs'->0->'breed' from people where id = 77;

关于json - PostgreSQL 嵌套 JSON 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24944347/

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