Re: DateAdd function ?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: DateAdd function ?
Дата
Msg-id 21421.1113921426@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: DateAdd function ?  ("Jeff Eckermann" <jeff_eckermann@yahoo.com>)
Список pgsql-sql
"Jeff Eckermann" <jeff_eckermann@yahoo.com> 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


В списке pgsql-sql по дате отправления:

Предыдущее
От: "Jeff Eckermann"
Дата:
Сообщение: Re: Query about SQL in PostgreSQL
Следующее
От: KÖPFERL Robert
Дата:
Сообщение: Re: trying to do an update a bit confused.