greenplum常用函数

--【常用字符串函数】
--字符串连接 
select 'green'||'plum';
--greenplum


--string中字符的数目 
select length('greenplum');
--9


--抽取子字符串
select substring('greenplum' from 6 for 4);
--plum


--删除字符两端空格
select trim('  greenplum ');
--greenplum


--删除字符串的指定字符
select trim(both 'x' from 'xgreenplumxx');
--greenplum


--按照分隔符分割字符串
select split_part('abc|def|ght','|',2);
--def


--【常用日期相关函数】
--获取当前的日期
select current_date;


--获取当前的时间戳
select now();
--select localtimestamp;
--select current_timestamp;


--获取时间戳的指定参数 year,month,day,hour,minute,second
select date_part('month',timestamp'2020-11-07 11:07:30');


--获取日期的指定部分
select to_char(now(),'yyyy');


--日期转字符串
select to_char(now(),'YYYY-MM-DD HH24:MI:SS');


--字符串转日期
select to_date('20110720','yyyymmdd')


--日期加减
select now() + interval '1 day' - interval '1 month';


--非空处理
select coalesce(null,'未知');


--另外,查看数据库版本信息     
select version();


 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值