postgreSql聚合函数row_to_json初使用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了postgreSql聚合函数row_to_json初使用相关的知识,希望对你有一定的参考价值。

把一行数据按Json字符串形式返回

select row_to_json(  table_code)from table_code

select array_to_json( array_agg(row_to_json(code))) from ( select 子查询) 

 

以上是关于postgreSql聚合函数row_to_json初使用的主要内容,如果未能解决你的问题,请参考以下文章

SQLAlchemy PostgreSQL row_to_json关系

在 row_to_json 函数中选择查询

如何将现有函数(包括聚合)包装到 Postgres 中的新函数中?

使用自联接在 row_to_json() 中复制 JSON 元素

Postgresql - 窗口函数聚合

postgresql 聚合函数存储在哪里?