PostgreSQL 字符串处理与日期处理操作

字符串长度、大小写

select char_length('test') -- 字符串长度
select length('test') 
length(string,encoding name)
select length('测试','utf-8');
lower(string) 或者 upper(string) -- 大小写
ascii(string)
select ascii('abc') -- 结果是'a'的ascii码

字符串格式化

format(formatstr text [,formatarg "any" [, ...] ]) -- 类似于printf

字符串拼接

select 'number' || 123 --字符串连接
concat(str "any" [, str "any" [, ...] ])
concat_ws(sep text, str "any" [,str "any" [, ...] ])
select * from concat_ws('#','hello','world')

字符串剪切与截取

lpad(string text, length int [,fill text])
rpad(string text, length int [,fill text])
select lpad('12345', 10,'0') -- 结果 "0000012345"
trim([leading | trailing | both] [characters] from string)
select trim(both ' ' from ' hello world') -- 结果是'hello world'
btrim(string text [, characters text])
rtrim(string text [, characterstext])
ltrim(string text [, characterstext])
select btrim('yyhello worldyyyy','y') -- 结果是'hello world'
left(str text, n int) -- 返回字符串前n个字符,n为负数时返回除最后|n|个字符以外的所有字符
right(str text, n int)
substring(string from int [for int]) 
select substring('hello world' from 7 for 5) -- 结果是'world'

字符串加引号

quote_ident(string text)
quote_literal(string text)
quote_literal(value anyelement)
select 'l''host"' -- 结果是'l'host"'
select quote_literal('l''host"') -- 结果是'l''host"'

字符串分割

split_part(string text,delimiter text, field int)
regexp_split_to_array(stringtext, pattern text [, flags text])
regexp_split_to_table(stringtext, pattern text [, flagstext])
select split_part('hello#world','#',2) -- 结果是'world'
select regexp_split_to_array('hello#world','#') -- 结果是{hello,world}
select regexp_split_to_table('hello#world','#') as split_res -- 结果是两行,第一行hello,第二行world

字符串查找、反转与替换

position(substring in string) -- 查找
select position('h' in 'hello world') -- 结果是1,这里从1开始计数
reverse(str)
repeat(string text, number int)
replace(string,string,string)
select replace('hello world',' ','#')
regexp_matches(string text,pattern text [, flags text])
regexp_replace(string text,pattern text,replacement text[, flags text])
select regexp_matches('hello world','.o.','g') -- 返回两行,第一行是'lo ',第二行是'wor'
select regexp_matches('hello world','.o.') -- 返回第一个匹配,'lo '

时间处理

select to_char(to_timestamp(create_time),'yyyy-mm-dd hh24:mi:ss')
select extract(year from now());

补充:postgresql处理时间函数 截取hh:mm/yyyy-mm-dd

1.to_timestamp:

and to_timestamp(a.upload_time,'yyyy-mm-dd')>='"+starttime+"' and to_timestamp(a.upload_time,'yyyy-mm-dd') <= '"+endtime+"' 

2.substring:

substring('2019-04-08 14:18:09',index,k):

数值代表含义 index:代表从index开始截取数据,k代表从index开始截取到第k个数据

处理对象:时间为字符串格式的数据

eg:

截取时间到 年-月-日:

select substring(upload_time,1,10) from table where upload_time='2019-04-08 14:18:09'

结果:2019-04-08

截取时间到 时:分:

select substring(upload_time,12,5) from table where upload_time='2019-04-08 14:18:09'

结果:14:18

以上为个人经验,希望能给大家一个参考,也希望大家多多支持www.887551.com。如有错误或未考虑完全的地方,望不吝赐教。

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐