我是靠谱客的博主 怕黑香菇,这篇文章主要介绍GreenPlum之生成月份字典表,现在分享给大家,希望可以做个参考。

--生成月份字典表
drop table if exists monthmapping;
create table monthmapping as 
select cast(to_char(onday,'yyyy-mm')||'-01' as char(10)) monthid,onday from (
select cast('2001-01-01 00:00:00' as timestamp) + (c ||' day')::interval as onday from generate_series(0,10000) as tab(c))tb
where onday<='2028-12-31'
distributed by(monthid,onday);

--当前时间加1年
SELECT now()::timestamp + '1 year';  

--当前时间加一个月
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';  

--当前时间加1年1月1天1时1分1秒
select now()::timestamp + '1 year 1 month 1 day 1 hour 1 min 1 sec'; 
 
--把columnname字段转换成天然后相加
SELECT now()::timestamp + (columnname || ' day')::interval FROM tablename

最后

以上就是怕黑香菇最近收集整理的关于GreenPlum之生成月份字典表的全部内容,更多相关GreenPlum之生成月份字典表内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(132)

评论列表共有 0 条评论

立即
投稿
返回
顶部