gpt4 book ai didi

arrays - Postgres 按 json 数组列分组

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

我很难理解 Postgres json 数组类型。如何使用 json 数组列进行分组。例如:

select product, avg(sales)
from Order
group by product

"Error: could not identify an equality operator for type json"

--Order--
id | sales | product
1 | 36 | ["874746", "474657"]
2 | 120 | ["874748"]
3 | 15 | ["874736", "474654"]

最佳答案

您需要使用 jsonb(二进制)9.4+:

select product::jsonb, avg(sales)
from Order
group by product::jsonb

关于arrays - Postgres 按 json 数组列分组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38083825/

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