)
来源:博客园
(资料图片)
1. SPLIT_PARTSPLIT_PART() 函数通过指定分隔符分割字符串,并返回第N个子串。语法:
SPLIT_PART(string, delimiter, position)11、string : 待分割的字符串2、delimiter:指定分割字符串3、position:返回第几个字串,从1开始,该参数必须是正数。如果参数值大于分割后字符串的数量,函数返回空串。示例:
SELECT SPLIT_PART("A,B,C", ",", 2); -- 返回B1下面我们利用该函数分割日期,获取年月日:
select split_part( current_date::text,"-",1) as year , split_part( current_date::text,"-",2) as month12返回信息:
yearmonth202242.STRING_TO_ARRAY该函数用于分割字符串至数组元素,请看语法:
string_to_array(string, delimiter [, null string])11、string : 待分割的字符串2、delimiter:指定分割字符串3、null string : 设定空串的字符串举例:
SELECT string_to_array("xx~^~yy~^~zz", "~^~"); -- {xx,yy,zz}SELECT string_to_array("xx~^~yy~^~zz", "~^~", "yy"); -- {xx,,zz}————————————————版权声明:本文为CSDN博主「linux_lsh」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。原文链接:https://blog.csdn.net/tomcat_lsh/article/details/124034197
标签: