Postgresql行列转换

前端之家收集整理的这篇文章主要介绍了Postgresql行列转换前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

列转行

1 查询测试表数据

[html] view plain copy
  1. cqdb=>select*fromtest;
  2. name
  3. ------
  4. AA
  5. BB
  6. CC
  7. (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)
  • 原文链接:https://www.f2er.com/postgresql/193093.html

    猜你在找的Postgre SQL相关文章