Re: how to convert a time interval to seconds?

Поиск
Список
Период
Сортировка
От Michael Fuhr
Тема Re: how to convert a time interval to seconds?
Дата
Msg-id 20060912145502.GA65688@winnie.fuhr.org
обсуждение исходный текст
Ответ на how to convert a time interval to seconds?  (Chansup Byun <Chansup.Byun@Sun.COM>)
Список pgsql-novice
On Tue, Sep 12, 2006 at 10:39:25AM -0400, Chansup Byun wrote:
> I searched how to convert a time interval to seconds but failed to find
> an example.

Searching the list archives for "interval to seconds" returns many
examples.  See also "Date/Time Functions and Operators" in the
documentation.

http://archives.postgresql.org/
http://www.postgresql.org/docs/8.1/interactive/functions-datetime.html

EXTRACT(EPOCH FROM interval_value)

> I want to convert the following wait_time column into seconds. How can I
> do that? The datatype for the wait_time is time without timezone.
>
>  job_number | task_number |   submission_time   | wait_time
> ------------+-------------+---------------------+-----------
>          56 |           0 | 2006-04-13 08:47:53 | 00:01:28

Does wait_time represent a duration?  If so then why is it a time
without timezone instead of an interval?

--
Michael Fuhr

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

Предыдущее
От: Chansup Byun
Дата:
Сообщение: how to convert a time interval to seconds?
Следующее
От: "A. Kretschmer"
Дата:
Сообщение: Re: how to convert a time interval to seconds?