Re: Timestamp vs. Interval and formatting....

Поиск
Список
Период
Сортировка
От Michael Glaesemann
Тема Re: Timestamp vs. Interval and formatting....
Дата
Msg-id 52822CCE-3F46-11D8-BA4F-000A95C88220@myrealbox.com
обсуждение исходный текст
Ответ на Re: Timestamp vs. Interval and formatting....  (Dan Jewett <dan@thenormalfamily.net>)
Ответы Re: Timestamp vs. Interval and formatting....  (Michael Glaesemann <grzm@myrealbox.com>)
Список pgsql-novice
Hi Dan,

On Jan 4, 2004, at 7:30 PM, Dan Jewett wrote:

> On Sun, 4 Jan 2004 14:47:49 -0600, Michael Glaesemann wrote this well
> considered message:

You certainly know how to flatter a guy! :)

> Now I just have the issue of resetting all those times I already
> entered which were HH:MM instead of MM:SS.

This is just thinking out loud: I haven't tried it. Can you do
something like this?

UPDATE track_length SET length = (
    SELECT EXTRACT(hour FROM length)::min + EXTRACT(min FROM length)::sec
    FROM track_length);

I'm not sure about the casts as they are, but there should be a way to
do that. There was just a post that had a subquery used to get a value
on a update, so I'm not sure that'd work either, but might be worth a
shot.

FWIW,

Michael Glaesemann
grzm myrealbox com


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: multiline PL/Python function fails in *.sql
Следующее
От: Michael Glaesemann
Дата:
Сообщение: Re: Timestamp vs. Interval and formatting....