我需要根据我定义的一些规则从存储在postgreSQL DB中的数组中检索单个元素,然后将其与其他一些数据连接起来。让我举个例子:
postgres=# SELECT * FROM list;
id | list
------+-----------------------------------------------------------------------------
0ab2c | [{type: 1, val: a}, {type: 3, val: c}, {type: 4, val: d}]
01abc | [{type: 1, val: a}, {type: 2, val: b}]
a0b31 | [{type: 1, val: a}, {type: 2, val: b}, {type: 3, val: c}]
postgres=# SELECT * FROM elems
eid | listId
----+-------
10 | 0ab2c
11 | 01abc
12 | a0b31
我想从list
表中提取仅一个元素,并将结果与elem
表连接起来,以获得类似的内容:
eid | listId | type | val
----+--------+------+-----
10 | 0ab2c | 3 | c
11 | 01abc | 2 | b
12 | a0b31 | 2 | b
特别是json数组中的元素应该根据类似的函数选择(我在JS中写的因为我对它更熟悉,但函数当然需要在plpgSQL中):
function getElemFromList(list){
var allowedTypes = [2, 3];
var result;
for(var i = 0; i < list.length; i++){
if(list[i].indexOf(allowedTypes) !== -1){
return list[i];
}
}
}
其中列表中的元素属于某种类型,并且是数组中第一个允许的元素。
答案 0 :(得分:0)
这应该很简单。看起来您需要此页面中的运算符:
http://www.postgresql.org/docs/current/static/functions-json.html
如果您希望循环遍历pl / pgsql中的任何结果集,请查看以下内容:
DO $$
cur RECORD;
BEGIN
FOR cur IN SELECT * FROM LIST
//do something with your JSON
END LOOP;
END $$;