Re: SQL doubt - Date Add

From: Gaetano Mendola <mendola(at)bigfoot(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: Re: SQL doubt - Date Add
Date: 2004-10-10 14:37:36
Message-ID: ckbhfe$bc3$2@floppy.pyrenet.fr
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

sreejith s wrote:
> Hi friends,
> I problem is i want to add a specified no. of years to a
> given date
> ie, 12/12/2004 + 5 = 12/12/2009. This has to be done via sql. Any
> predefined function there for the same. or v have split the yr and
> then add.
> Sreejith
>

# select '2004-12-12'::date + 5 * '1 year'::interval;
?column?
---------------------
2009-12-12 00:00:00
(1 row)

Regards
Gaetano Mendola

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Theo Galanakis 2004-10-10 22:59:40 Export tab delimited from mysql to postgres.
Previous Message Gaetano Mendola 2004-10-10 14:36:54 Re: SQL doubt - Date Add