greenplum-时间处理
Posted cyt1153
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了greenplum-时间处理相关的知识,希望对你有一定的参考价值。
工作中遇到,需要改变两周以前的数据状态,于是查了下资料,原来数据库直接就可以处理,所以分享给大家!
在PostgreSQL中可以直接对时间进行加减运算:、
SELECT now()::timestamp + ‘1 year‘; --当前时间加1年 SELECT now()::timestamp + ‘1 month‘; --当前时间加一个月 SELECT now()::timestamp + ‘1 day‘; --当前时间加一天 SELECT now()::timestamp + ‘1 hour‘; --当前时间加一个小时 SELECT now()::timestamp + ‘1 min‘; --当前时间加一分钟 SELECT now()::timestamp + ‘1 sec‘; --加一秒钟 select now()::timestamp + ‘1 year 1 month 1 day 1 hour 1 min 1 sec‘; --加1年1月1天1时1分1秒 SELECT now()::timestamp + (col || ‘ day‘)::interval FROM table --把col字段转换成天 然后相加
以上是关于greenplum-时间处理的主要内容,如果未能解决你的问题,请参考以下文章
通过 talend 从 oracle 加载到 greenplum 时的数据不能很好地处理 CLOB 列
我可以使用 NIFI 在 GreenPlum 和 Postgresql 中运行存储函数吗?如果是,那么我应该使用哪个处理器和啥配置?