目录postgresql greenplum字符串去重拼接Postgresql字符串处理方式关于查找字符串字符串与数字的相互转换总结postgresql greenplum字符串去重拼接 pg 、gp 实现 collec
pg 、gp 实现 collect_set 效果:
array_agg(DISTINCT $columnName))
array(SELECT DISTINCT $columnName from $tableName )
字符串拼接 :
array_to_string(array_agg(DISTINCT ), '|')
select position('hello' in 'test_sql')
output:0
select position('test' in 'test_sql')
output:1
故可用position(str_1 in str_2) != 0判断str_1是否是str_2的子串。
字符串->数字
to_number(block_id,'999999')和cast(block_id as numeric),但前一句会限定的数字大小为10的5次方,即过大的数值会出问题,而后一句不会。
数字->字符串
cast(block_id as varchar)将数值型转为字符串型。
以上为个人经验,希望能给大家一个参考,也希望大家多多支持我们。
--结束END--
本文标题: postgresql之greenplum字符串去重拼接方式
本文链接: https://lsjlt.com/news/201992.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-23
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0