Postgresql行列转换

Postgresql行列转换,第1张

概述列转行 1 查询测试表数据 [html]  view plain  copy cqdb=> select * from test ;    name   ------    AA    BB    CC   (3 rows)   2 列转行(string_agg) [html]  view plain  copy cqdb=> select string_agg(name,',') from te 列转行

1 查询测试表数据

[HTML] view plain copy cqdb=>select*fromtest; name ------ AA BB CC (3rows) 2 列转行(string_agg)

>selectstring_agg(name,',')fromtest; string_agg ------------ AA,BB,CC (1row)

行转列

----------- A,B,C,D,E (1row)

2 行转列(regexp_split_to_table)

>selectregexp_split_to_table(name,248);">regexp_split_to_table ----------------------- A B C D E (5rows) 总结

以上是内存溢出为你收集整理的Postgresql行列转换全部内容,希望文章能够帮你解决Postgresql行列转换所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/1171121.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-02
下一篇 2022-06-02

发表评论

登录后才能评论

评论列表(0条)

保存