"Jeff Eckermann" <[EMAIL PROTECTED]> writes:
> There is no "dateadd" function in PostgreSQL, but you can write your own 
> easily enough.  The following should give you an idea of the logic you can 
> use:

> jeck=# select current_date + cast('1 day' as interval);

Alternatively, maybe you want to use the date-plus/minus-integer operators.

regression=# select current_date;
    date
------------
 2005-04-19
(1 row)

regression=# select current_date + 1;
  ?column?
------------
 2005-04-20
(1 row)

regression=# select current_date - 1;
  ?column?
------------
 2005-04-18
(1 row)

There isn't really a date-plus-interval operator --- what's happening
there is the date is implicitly promoted to timestamp and then
timestamp-plus-interval is used.  You might want this if you want to
add symbolic quantities like '2 months' or '1 year', but for small
integer numbers of days, the integer operations are faster and simpler
to use.

                        regards, tom lane

---------------------------(end of broadcast)---------------------------
TIP 3: if posting/reading through Usenet, please send an appropriate
      subscribe-nomail command to [EMAIL PROTECTED] so that your
      message can get through to the mailing list cleanly

Reply via email to