Re: incrementing and decrementing dates by day increments - Mailing list pgsql-general

From Stephan Szabo
Subject Re: incrementing and decrementing dates by day increments
Date
Msg-id 20031026132910.R7424@megazone.bigpanda.com
Whole thread Raw
In response to incrementing and decrementing dates by day increments programmatically  (nzanella@cs.mun.ca (Neil Zanella))
List pgsql-general
On Sat, 25 Oct 2003, Neil Zanella wrote:

> Hello,
>
> I know that PostgreSQL, like most database management systems, has a
> function
> call called NOW() that returns the current date. Is there a way to
> return a datein PostgreSQL such that the output is in ISO 8601 format
> (Unix 'date -I' format)but such that the date is not "today"'s date
> but the date two days ago or five
> days ahead of now? I have tried something like NOW() + 5 but that did
> not work
> (because the data types are incompatible, and SELECT NOW() +
> '0000-00-01' does
> not work either. I get the error:


If you want a date, I'd suggest something like
 CURRENT_DATE+5

The reason this works while, now()+5 doesn't is that now() doesn't return
a date, but a timestamp type (including time).

If you want time information, then probably
 CURRENT_TIMESTAMP + INTERVAL '5 days'

pgsql-general by date:

Previous
From: Alvaro Herrera
Date:
Subject: Re: incrementing and decrementing dates by day increments programmatically
Next
From: John DeSoi
Date:
Subject: Re: shared memory on OS X - 7.4beta4