如何使用枢轴将行转换为postgres中的列?让我来计算一下
Posted
技术标签:
【中文标题】如何使用枢轴将行转换为postgres中的列?让我来计算一下【英文标题】:how to convert rows to columns in postgres using pivot? let me count the ways 【发布时间】:2019-04-24 07:31:19 【问题描述】:查询:
select count(flag),flag
from tablename
group by flag;
我从表中得到的结果集如下:
count | flag
---------------
2 B
45 ZG
3 RET
45 AAR
23 APA
我想要结果为
B | ZG | RET | AAR | APA
2 | 45 | 3 | 45 | 23
【问题讨论】:
你看过the many questions被问到的问题吗? 我没有从他们那里找到我的问题的解决方案。 【参考方案1】:你应该使用'tablefunc'贡献模块:https://www.postgresql.org/docs/current/tablefunc.html
【讨论】:
以上是关于如何使用枢轴将行转换为postgres中的列?让我来计算一下的主要内容,如果未能解决你的问题,请参考以下文章