繁体   English   中英

pgsql 1到n的关系到json

[英]pgsql 1 to n relation into json

长话短说,我如何使用1到n选择数据来构建json,如示例所示:

SELECT table1.id AS id1,table2.id AS id2,t_id,label 
FROM table1 LEFT JOIN table2 ON table2.t_id = table1.id 

result 
|id1|id2|t_id|label|
+---+---+----+-----+
|1  | 1 | 1  | a   |
|   | 2 | 1  | b   |
|   | 3 | 1  | c   |
|   | 4 | 1  | d   |
|2  | 5 | 2  | x   |
|   | 6 | 2  | y   |

变成这个

 SELECT table1.id, build_json(table2.id,table2.label) AS json_data 
 FROM table1 JOIN table2 ON table2.t_id = table1.id  
 GROUP BY table1.id

|id1|json_data
+--+-----------------
|1 |{"1":"a","2":"b","3":"c","4":"d"}
|2 |{"5":"x","6":"y"}

我猜最好的开始将是从列构建数组

用Hstore代替json也可以

您的表结构有点奇怪(看起来更像是报表而不是表),所以我在这里看到两个任务:

将空值替换为正确的id1 你可以这样

with cte1 as (
    select
        sum(case when id1 is null then 0 else 1 end) over (order by t_id) as id1_partition,
        id1, id2, label
    from Table1  
), cte2 as (
    select
        first_value(id1) over(partition by id1_partition) as id1,
        id2, label
    from cte1
)
select *
from cte2

现在您必须将数据聚合json 据我所知,PostgreSQL中没有这样的功能,因此您必须手动连接数据:

with cte1 as (
    select
        sum(case when id1 is null then 0 else 1 end) over (order by t_id) as id1_partition,
        id1, id2, label
    from Table1  
), cte2 as (
    select
        first_value(id1) over(partition by id1_partition) as id1,
        id2, label
    from cte1
)
select
   id1,
   ('{' || string_agg('"' || id2 || '":' || to_json(label), ',') || '}')::json as json_data
from cte2
group by id1

sql小提琴演示

如果要转换为hstore

with cte1 as (
    select
        sum(case when id1 is null then 0 else 1 end) over (order by t_id) as id1_partition,
        id1, id2, label
    from Table1  
), cte2 as (
    select
        first_value(id1) over(partition by id1_partition) as id1,
        id2, label
    from cte1
)
select
    c.id1, hstore(array_agg(c.id2)::text[], array_agg(c.label)::text[])
from cte2 as c
group by c.id1

sql小提琴演示

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM