postgresql之greenplum字符串去重拼接方式

postgresql greenplum字符串去重拼接

pg 、gp 實現 collect_set  效果:

array_agg(DISTINCT $columnName))
array(SELECT DISTINCT   $columnName  from $tableName )

字符串拼接 :

array_to_string(array_agg(DISTINCT ), '|') 

postgresql字符串處理方式

關於查找字符串

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)將數值型轉為字符串型。

總結

以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。

推薦閱讀: