Re: auto update dates

Поиск
Список
Период
Сортировка
От Rory Campbell-Lange
Тема Re: auto update dates
Дата
Msg-id 20020523232447.GB15332@campbell-lange.net
обсуждение исходный текст
Ответ на Re: auto update dates  ("Joel Burton" <joel@joelburton.com>)
Ответы Re: auto update dates
Список pgsql-novice
On 23/05/02, Joel Burton (joel@joelburton.com) wrote:
> current_time returns timezone information, but you're trying to store
> this in a field that is time w/o timezone information. either coerce
> this data yourself, or make the field hold timezone info.
>
> Better question, though: why are you storing the date, the time, and
> the timestamp? Much easier to simply store the timestamp. You can
> always get the date & time from that. This will save you space _and_
> time. (Plus, your current problem would become irrelevant).

Hi Joel

Thanks very much for your mail.

I can see that working with CAST I can extract the date and
(theoretically) the time from the timestamp. Thanks very much for the
suggestion.

    brandf=# select cast(current_timestamp as time);
    ERROR:  Cannot cast type 'timestamp with time zone' to 'time without
    time zone'

How do I get around this? I can see various time functions with and
without time zone data, but I don't know how to utilise them.

Thanks
Rory

--
Rory Campbell-Lange
<rory@campbell-lange.net>
<www.campbell-lange.net>

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

Предыдущее
От: Rory Campbell-Lange
Дата:
Сообщение: Re: query problem - get count in related table
Следующее
От: "Patrick Hatcher"
Дата:
Сообщение: Re: COPY returns Bad timestamp external rep..