列转行
1 查询测试表数据
- cqdb=>select*fromtest;
- name
- ------
- AA
- BB
- CC
- (3rows)
>selectstring_agg(name,',')fromtest;
行转列
-----------
1 查询测试表数据
>selectstring_agg(name,',')fromtest;
-----------
2 行转列(regexp_split_to_table)
>selectregexp_split_to_table(name,248);">regexp_split_to_table