Postgres 9.4
我有一个JSONB值的记录,如下所示:
{
"attributeA": 1,
"attributeB": "Foo",
"arrayAttribute": [
{"attributeC": 95, "attributeD": 5},
{"attributeC": 105, "attributeD": 5}
]
}
我想写一个查询说:
查找attributeA = 1,attributeB ='Foo'的任何项目,并且对于arrayAttribute数组中的每个元素,attributeC在某个值X的10点范围内。因此,如果X为100,则上述记录将匹配( 95和105都在100分之内10分。
遗憾的是,我真的很难使用JSONB查询语法。最好的方法是什么?
答案 0 :(得分:4)
Postgres documentation regarding json真的很棒。至于搜索查询方法,了解->>
返回text
和->
返回json(b)
非常重要。
查询可以是以下内容:
select * from json js,jsonb_array_elements(data->'arrayAttribute') as array_element
where (js.data->>'attributeA')::integer = 1
and js.data->>'attributeB' = 'Foo'
and (array_element->>'attributeC')::integer >= (100-5)
and (array_element->>'attributeC')::integer <= (100+5);
如果要按索引选择特定的数组元素,在您的情况下,查询将如下:
SELECT * FROM json js,jsonb_extract_path(data,'arrayAttribute') AS entireArray
WHERE (entireArray -> 0 ->> 'attributeC')::integer = 95
AND (entireArray -> 1 ->> 'attributeC')::integer = 105;