合并相同 patient_id 的 JSON 数据为数组

问题

c 复制代码
select patient_id,concat('{"itemText":"',item_text,'","itemValue":"',item_value,'"}') from hs_patient_groups where active = 1;

eef41128c47c401abb7f8885a5f9fbdf	{"itemText":"旧","itemValue":"2"}
eef41128c47c401abb7f8885a5f9fbdf	{"itemText":"新","itemValue":"1"}
0564ccc4c07b4df98bf8207f7084b493	{"itemText":"患者1组","itemValue":"patientGroup1"}
e92acabeb871422dacd11199df89bbc3	{"itemText":"患者1","itemValue":"患者1"}
af2b9bb388af484fb99c9d03cc2041ca	{"itemText":"新","itemValue":"1"}
5e4ff36bebd7478892978f875f48f515	{"itemText":"患者1","itemValue":"患者1"}
344035419b3a4c4e8b29d76c627679f9	{"itemText":"患者2","itemValue":"患者2"}
bc266205ca604150b3d800aab059fba8	{"itemText":"患者2","itemValue":"患者2"}
1801a4524b084d2b8197bfcc33849b24	{"itemText":"患者1","itemValue":"患者1"}
1801a4524b084d2b8197bfcc33849b24	{"itemText":"患者2","itemValue":"患者2"}
73cd39179ab147e6968858aecd56f214	{"itemText":"冠心病组","itemValue":"02"}
d54ced0ccbba4bb2b1d3359877fb0620	{"itemText":"瓣膜组","itemValue":"01"}
3c92057be370414b822407b1ca89ad1b	{"itemText":"瓣膜组","itemValue":"01"}
591883a377d6428f985bdb99b762929b	{"itemText":"瓣膜组","itemValue":"01"}
2b1b8ac08c5d4ac39625c20bd206ed00	{"itemText":"患者2","itemValue":"患者2"}
19822b6d38504d1a8af94dbfa32c2c0e	{"itemText":"患者2","itemValue":"患者2"}
ab62ee95526e405e93f117a25db77eee	{"itemText":"瓣膜组","itemValue":"01"}
181e27e744e242719a47d5a86260eeb1	{"itemText":"冠心病组","itemValue":"02"}
e1d862aa6baa474987545776ad8e84db	{"itemText":"冠心病组","itemValue":"02"}

如何将相同patient_id,不同concat的值合并为一行

合并相同 patient_id 的 JSON 数据为数组

要将相同 patient_id 的不同 JSON 数据合并为一行(合并为一个 JSON 数组),你可以使用 PostgreSQL 的 json_aggjsonb_agg 聚合函数。

解决方案(推荐)

sql 复制代码
SELECT 
    patient_id,
    json_agg(json_build_object('itemText', item_text, 'itemValue', item_value)) AS items
FROM 
    hs_patient_groups 
WHERE 
    active = 1
GROUP BY 
    patient_id;

结果示例

执行上述查询后,结果将类似于:

复制代码
patient_id                           | items
-------------------------------------+--------------------------------------------------------------------
eef41128c47c401abb7f8885a5f9fbdf    | [{"itemText":"旧","itemValue":"2"}, {"itemText":"新","itemValue":"1"}]
0564ccc4c07b4df98bf8207f7084b493    | [{"itemText":"患者1组","itemValue":"patientGroup1"}]
1801a4524b084d2b8197bfcc33849b24    | [{"itemText":"患者1","itemValue":"患者1"}, {"itemText":"患者2","itemValue":"患者2"}]
...                                  | ...

其他选项

  1. 如果你需要保持原始查询中的 JSON 字符串格式:
sql 复制代码
SELECT 
    patient_id,
    json_agg(concat('{"itemText":"',item_text,'","itemValue":"',item_value,'"}')::json) AS items
FROM 
    hs_patient_groups 
WHERE 
    active = 1
GROUP BY 
    patient_id;
  1. 如果你使用的是 PostgreSQL 9.4 或更早版本(没有 json_agg):
sql 复制代码
SELECT 
    patient_id,
    '[' || string_agg(concat('{"itemText":"',item_text,'","itemValue":"',item_value,'"}'), ',') || ']' AS items
FROM 
    hs_patient_groups 
WHERE 
    active = 1
GROUP BY 
    patient_id;

注意:最后一个方法生成的是 JSON 字符串而不是真正的 JSON 类型。

相关推荐
fouryears_2341743 分钟前
什么是JSON,如何与Java对象转化
java·spring boot·spring·json
程序员编程指南1 小时前
Qt XML 与 JSON 数据处理方法
xml·c语言·c++·qt·json
····懂···1 天前
关于PGCE专家技术认证解决方案
数据库·postgresql
我命由我123452 天前
PostgreSQL 保留关键字冲突问题:语法错误 在 “user“ 或附近的 LINE 1: CREATE TABLE user
数据库·后端·sql·mysql·postgresql·问题·数据库系统
快乐非自愿2 天前
C#解析JSON数据全攻略
数据库·c#·json
大熊程序猿3 天前
swagger json 转文档
json
南望无一3 天前
@uiw/react-json-view 如何修改文本省略号、null节点、数组节点等
前端·json
卜锦元4 天前
华为高斯Gauss数据库版本与兼容协议--详解(附带Gorm连接示例代码)
数据库·mysql·华为·postgresql
AI扶我青云志4 天前
bert模型中config.json中所有参数
人工智能·json·bert
kyle~4 天前
数据交换---JSON格式
服务器·microsoft·json