我有一个场景,我需要将json数组转换为postgres int数组并查询结果。下面是我的数组
ID DATA
1 {"bookIds" : [1,2,3,5], "storeIds": [2,3]}
2 {"bookIds" : [4,5,6,7], "storeIds": [1,3]}
3 {"bookIds" : [11,12,10,9], "storeIds": [4,3]}
我想将booksId数组转换为int数组,然后再查询它。在postgres 9.3中有可能吗?我知道9.4 +提供了更多的JSON支持,但我现在无法更新我的数据库。
以下查询给出了错误
Select data::json->>'bookIds' :: int[] from table
ERROR: malformed array literal: "bookIds"
LINE 1: Select data::json->>'bookIds' :: int[] from table
是否可以在postgres 9.3中查询json数组中的元素..提前感谢...
答案 0 :(得分:12)
问题中的设置应如下所示:
create table a_table (id int, data json);
insert into a_table values
(1, '{"bookIds": [1,2,3,5], "storeIds": [2,3]}'),
(2, '{"bookIds": [4,5,6,7], "storeIds": [1,3]}'),
(3, '{"bookIds": [11,12,10,9], "storeIds": [4,3]}');
请注意json值的正确语法。
功能select id, array_agg(e::text::int)
from a_table, json_array_elements(data->'bookIds') e
group by 1
order by 1;
id | array_agg
----+--------------
1 | {1,2,3,5}
2 | {4,5,6,7}
3 | {11,12,10,9}
(3 rows)
使用any()
搜索数组中的元素,例如:
select *
from (
select id, array_agg(e::text::int) arr
from a_table, json_array_elements(data->'bookIds') e
group by 1
) s
where
1 = any(arr) or
11 = any(arr);
id | arr
----+--------------
1 | {1,2,3,5}
3 | {11,12,10,9}
(2 rows)
另请阅读<@ operator
。
您还可以通过检查其元素来搜索json数组(不将其转换为int数组),例如:
select t.*
from a_table t, json_array_elements(data->'bookIds') e
where e::text::int in (1, 11);
id | data
----+-----------------------------------------------
1 | {"bookIds" : [1,2,3,5], "storeIds": [2,3]}
3 | {"bookIds" : [11,12,10,9], "storeIds": [4,3]}
(2 rows)
答案 1 :(得分:4)
从a fantastic answer到this question修改的这两个功能(适用于json
/ jsonb
)完美无缺
CREATE OR REPLACE FUNCTION json_array_castint(json) RETURNS int[] AS $f$
SELECT array_agg(x)::int[] || ARRAY[]::int[] FROM json_array_elements_text($1) t(x);
$f$ LANGUAGE sql IMMUTABLE;
CREATE OR REPLACE FUNCTION jsonb_array_castint(jsonb) RETURNS int[] AS $f$
SELECT array_agg(x)::int[] || ARRAY[]::int[] FROM jsonb_array_elements_text($1) t(x);
$f$ LANGUAGE sql IMMUTABLE;
您可以按如下方式使用它们:
SELECT json_array_castint('[1,2,3]')
与{1,2,3}
中的预期回报integer[]
相同。如果你想知道为什么我在每个SELECT
语句中与一个空数组连接,那是因为如果你试图转换空json
/ jsonb
,那么转换是有损的而没有它数组到integer[]
你将得不到返回(不需要)而不是空数组(如预期的那样)。使用上述方法时
SELECT json_array_castint('[]')
您将获得{}
而不是任何内容。有关我添加该内容的原因的详情,请参阅here。
答案 2 :(得分:3)
我会更简单一些:
select * from
(
select t.id, value::text::int as bookvalue
from testjson t, json_array_elements(t.data->'bookIds')
) as t
where bookvalue in (1,11)
答案 3 :(得分:1)
就我而言,我不得不将存储在表col中的json数据转换为pg数组格式,这很方便:
-- username is the table column, which has values like ["john","pete","kat"]
select id, ARRAY(SELECT json_array_elements_text((username)::json)) usernames
from public.table-name;
-- this produces : {john,pete,kat}