Re: [SQL] Trouble with dates - Mailing list pgsql-sql

From Marin D
Subject Re: [SQL] Trouble with dates
Date
Msg-id Pine.LNX.3.96.980531194807.18113B-100000@server.iclub.techno-link.com
Whole thread Raw
In response to Trouble with dates  (Bassel Hatoum <bassel@gnc.net>)
List pgsql-sql
CREATE TABLE test (d DATE);

INSERT INTO test VALUES (CURRENT_DATE);


test=> SELECT DATE( DATETIME(d) + '1 month'::TIMESPAN) FROM test;

      date
----------
30-06-1998
(1 row)

test=>


Hope this helps...

    Marin

          -= Why do we need gates in a world without fences? =-


On Sat, 30 May 1998, Bassel Hatoum wrote:

> I'm trying to add months to a date without having to calculate how many
> days in the month, etc.
> Oracle has an add_month function that would do the trick.  It there
> anything similar in PGSQL?  Or maybe a way to emulate it?
>
>


pgsql-sql by date:

Previous
From: Bassel Hatoum
Date:
Subject: Trouble with dates
Next
From: Piotr Adamiak
Date:
Subject: Where is the problem ?