Re: [SQL] Arithmetic operation on DATE

From: Christopher Sawtell <csawtell(at)paradise(dot)net(dot)nz>
To: "macky" <macky(at)edsamail(dot)com>, <pgsql-novice(at)postgresql(dot)org>, <pgsql-sql(at)postgresql(dot)org>
Subject: Re: [SQL] Arithmetic operation on DATE
Date: 2001-08-13 10:01:59
Message-ID: 20010813100119.3FECD1FA04B@deborah.paradise.net.nz
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice pgsql-sql

On Mon, 13 Aug 2001 21:48, macky wrote:
> is it possible to add a date datatype column to a number resulting to a
> date......

chris=# select date(CURRENT_TIMESTAMP);
date
------------
2001-08-13
(1 row)

chris=# select date(CURRENT_TIMESTAMP) + '6 @days'::interval;
?column?
------------------------
2001-08-19 00:00:00+12
(1 row)

chris=# select date(date(CURRENT_TIMESTAMP) + '6 @days'::interval);
date
------------
2001-08-19
(1 row)

That what you want?

> theoretically it should do this,,,
>
> X is in months
>
> date + X = date
>
> --> 2001-08-20 + 6 = 2002-02-20
>
> ----------------------------------------------------------------------
> The information contained in this message (including any attachments)
> is confidential and intended solely for the attention and use of the
> named addressee(s). It must not be copied, distributed nor disclosed
> to any person. If you are not the intended recipient, please delete
> it from your system and notify sender immediately. Any disclosure,
> copying or distribution thereof or any action taken or omitted to be
> taken in reliance thereon is prohibited and may be unlawful.
> ----------------------------------------------------------------------
>
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Don't 'kill -9' the postmaster

In response to

Browse pgsql-novice by date

  From Date Subject
Next Message Antti Linno 2001-08-13 10:02:17 Re: [SQL] Arithmetic operation on DATE
Previous Message macky 2001-08-13 09:48:57 Arithmetic operation on DATE

Browse pgsql-sql by date

  From Date Subject
Next Message Antti Linno 2001-08-13 10:02:17 Re: [SQL] Arithmetic operation on DATE
Previous Message macky 2001-08-13 09:48:57 Arithmetic operation on DATE