Re: Statistical aggregates with intervals

Поиск
Список
Период
Сортировка
От Christopher Swingley
Тема Re: Statistical aggregates with intervals
Дата
Msg-id CAHsw44-mWjPm=1WaeuU35BAZi1ouoyDngTwQpzaKeDRA1oCwww@mail.gmail.com
обсуждение исходный текст
Ответ на Statistical aggregates with intervals  (Thomas Munro <munro@ip9.org>)
Ответы Re: Statistical aggregates with intervals
Список pgsql-general
Thomas,

On Wed, Aug 22, 2012 at 12:25 PM, Thomas Munro <munro@ip9.org> wrote:
> I noticed that 'avg' works on 'interval', but 'stddev' and 'variance' don't:

I don't know why, but you could convert 'interval' into something else
where all the functions work:

CREATE OR REPLACE FUNCTION interval_to_seconds(interval)
RETURNS double precision AS $$
    SELECT (extract(days from $1) * 86400)
         + (extract(hours from $1) * 3600)
         + (extract(minutes from $1) * 60)
         + extract(seconds from $1);
$$ LANGUAGE SQL;

Cheers,

Chris
--
Christopher Swingley
Fairbanks, Alaska
http://swingleydev.com/
cswingle@gmail.com


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

Предыдущее
От: "Gauthier, Dave"
Дата:
Сообщение: need substring based on delimiter
Следующее
От: Joe Conway
Дата:
Сообщение: Re: need substring based on delimiter