Re: [SQL] Trouble with dates

Поиск
Список
Период
Сортировка
От Marin D
Тема Re: [SQL] Trouble with dates
Дата
Msg-id Pine.LNX.3.96.980531194807.18113B-100000@server.iclub.techno-link.com
обсуждение исходный текст
Ответ на Trouble with dates  (Bassel Hatoum <bassel@gnc.net>)
Список 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 по дате отправления:

Предыдущее
От: Bassel Hatoum
Дата:
Сообщение: Trouble with dates
Следующее
От: Piotr Adamiak
Дата:
Сообщение: Where is the problem ?