I need to all of timestamps in a column the same amount. I want to write an sql statement like:

update sometable set timecol = timecol + <4 months>;

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted
update sometable set timecol = add_months(timecol,4);

See documentation

link|improve this answer
feedback
update sometable set timecol = timecol + interval '4' month;

Strangely enough, I can't find this in the Oracle documentation anywhere, but it works on my Oracle XE installation. It's fairly close to the way PostgreSQL does it, and I believe it's part of one of the SQL standards.

link|improve this answer
Yes, using INTERVAL is standard SQL. BTW, I wonder why you put quotes around '4'? – Bill Karwin Dec 17 '08 at 16:41
Here you go: download.oracle.com/docs/cd/B19306_01/server.102/b14200/… Quotes are part of the documented dyntax in Oracle, btw. – David Aldridge Dec 17 '08 at 16:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.