当前位置:   article > 正文

(二) 行转列regexp_split_to_table()与列转行string_agg()—以及postgreSQL中使用特例_hologres 行转列

hologres 行转列

1.行转列
regexp_split_to_table(input_string, separator)
input_string待转的字符串
separator是分隔符

例子:
select regexp_split_to_table(‘aa,bb’, ‘,’) from dual
结果:
在这里插入图片描述

postgreSQL注意:
在post库中使用‘+’来分割不行,所以一个解决办法是用replace函数用’,‘来代替‘+’,再用’,'来分割
select regexp_split_to_table(replace(‘aa+bb’, ‘+’, ‘,’), ‘,’) from dual

2.列转行
string_agg ( input_string, separator [ order by 某属性 ])
input_string待转的字符串
separator是转换成功后的字符串中的分隔符

例子:
select string_agg(student_id,’,’) from student_info

结果:
假设student_info表中有student_id这个字段的数据为

student_id
1
2
3

则聚合后的答案:

student_id
1,2,3

注:
select string_agg(student_id,’,’ order by age) from student_info则结果是按照age顺序来排列的

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/493119
推荐阅读
相关标签
  

闽ICP备14008679号