本文介绍了如何在PostgreSQL中插入日期系列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想从2015-04-01开始,将日期系列插入到现有表( day )的现有表( public )中,从2015-04-01开始,2015-04 -02,..... to 2015-04-30。我知道postgreSQL中有一个generate series方法。但是我可以使用该方法生成日期吗,或者有其他方法可以生成Dates吗?感谢您的帮助。
I want to insert a Date series into an existing table (public.test) in the column(day) starting from 2015-04-01 ,2015-04-02 ,.....to 2015-04-30.i know there is a generate series method in postgreSQL.But Can I generate dates using that or is there any other method to generate Dates?Any help is appreciated.
推荐答案
类似
insert into public.test ("day")
select generate_series('2015-04-01'::date,'2015-04-30'::date,'1 day'::interval);
应该工作
这篇关于如何在PostgreSQL中插入日期系列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!