Re: strange TIME behaviour

Поиск
Список
Период
Сортировка
От rihad
Тема Re: strange TIME behaviour
Дата
Msg-id 46EBE3D6.3090909@mail.ru
обсуждение исходный текст
Ответ на Re: strange TIME behaviour  (Michael Fuhr <mike@fuhr.org>)
Ответы Re: strange TIME behaviour  (Raymond O'Donnell <rod@iol.ie>)
Список pgsql-general
Michael Fuhr wrote:
> On Sat, Sep 15, 2007 at 04:45:02PM +0500, rihad wrote:
>> Can someone please explain to me why these two give different results?
>> The idea is to get the number of seconds past 00:00:00, so the second
>> one is obviously correct.
>
> They're both correct.
>
>> foo=> select extract(epoch from current_time);
>>   date_part
>> --------------
>>  42023.026348
>> (1 row)
>
> current_time is a time with time zone; the above query returns the
> number of seconds since 00:00:00 UTC.
>
>> foo=> select extract(epoch from cast(current_time as time));
>>   date_part
>> --------------
>>  60030.824587
>> (1 row)
>
> By casting current_time to time without time zone you're now getting
> the number of seconds since 00:00:00 in your local time zone.
>



I'm reading this right now:
http://www.postgresql.org/docs/8.2/interactive/datatype-datetime.html
"time with time zone" is not recommended. I'm still unsure if the
timezone issue is at all important when comparing timestamps
(greater/less/etc), or when adding intervals to preset dates? Like
registration_time + interval '2 months';

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

Предыдущее
От: Martijn van Oosterhout
Дата:
Сообщение: Re: strange TIME behaviour
Следующее
От: Christian Schröder
Дата:
Сообщение: "like" vs "substring" again