Postgresql:如何在不使用中间hstore的情况下将键值表转换为json

时间:2016-06-12 09:17:18

标签: sql json postgresql key-value postgresql-9.4

我有一个带有此表单的键值postgresql表

pk | fk | key | value
---|----|-----|------
1  | 11 | k1  | v1
2  | 11 | k2  | v2
3  | 22 | k3  | v3
4  | 33 | k1  | v1
5  | 33 | kk  | vk
6  | 33 | kn  | vn

我需要转换为按fk:

分组的json对象
fk | kv
---|------------
11 | {"k1": "v1", "k2": "v2"}
22 | {"k3": "v3"}
33 | {"k1": "v1", "kk": "vk", "kn": "vn"}

我已经找到了使用和中间hstore转换的方法:

SELECT fk, hstore_to_json(hstore(array_agg(key), array_agg(value))) as kv
FROM tbl
GROUP BY fk, pk;

问题是,hshop扩展在生产时不适用于我,我无法安装它,是否有其他方法可以获得相同形式的输出?

PS:postgresql版本是9.4.8

1 个答案:

答案 0 :(得分:5)

它实际上与/Restaurant/-KK37k6g5cYYippEHpZ3/User/-KK37k6g5cYYippEHpZ4/id版本非常相似:

"Restaurant": {
        "$id": {
            ".read": "auth.uid != null",
            ".write": "data.child($id).child('User').child($anotherWildcard).child('id').val() === auth.uid"  
        }
    }

收率:

hstore