Re: comparing rows

Поиск
Список
Период
Сортировка
От Reece Hart
Тема Re: comparing rows
Дата
Msg-id 1197324024.7855.77.camel@snafu
обсуждение исходный текст
Ответ на comparing rows  ("hjenkins" <hjenkins@uvic.ca>)
Ответы Re: comparing rows  (David Fetter <david@fetter.org>)
Список pgsql-general

On Mon, 2007-12-10 at 13:31 -0800, hjenkins wrote:
I would like to take a timeseries of data and extract the rows of data
flanking the gaps in it. So I need to compare timestamps from two adjacent
rows, and determine if the interval is greater than the standard sampling
interval.

It often helps for us to have a snippet of a table definition to frame replies.  I'll assume that you have a "data" table with a timestamp column called "ts". I suspect you could use a subquery, like this:

=> select D1.ts as ts1,(select ts from data D2 where D2.ts>D1.ts limit 1) as ts2 from data D1;

I'm uncertain about the performance of this subquery in modern PGs.  If this query works for you, then you can wrap the whole thing in a view or another subquery in order to compute ts2-ts1, like this:

=> select ts1,ts2,ts2-ts1 as delta from ( <above query> ) X;


This will get you only the timestamps of adjacent rows with large deltas. The easiest way to get the associated data is to join on the original data table where ts1=ts or ts2=ts.


-Reece

-- 
Reece Hart, http://harts.net/reece/, GPG:0x25EC91A0

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

Предыдущее
От: "Obe, Regina"
Дата:
Сообщение: Re: Script to reset all sequence values in the a given DB?
Следующее
От: "Scott Marlowe"
Дата:
Сообщение: Re: slony question