Re: Detecting change in event properties - Mailing list pgsql-general

From Tom Lane
Subject Re: Detecting change in event properties
Date
Msg-id 6973.1382723382@sss.pgh.pa.us
Whole thread Raw
In response to Re: Detecting change in event properties  (Robert James <srobertjames@gmail.com>)
Responses Re: Detecting change in event properties
List pgsql-general
Robert James <srobertjames@gmail.com> writes:
>> (To elaborate, I'm interested in:
>> * Finding field x of the _previous_ row
>> * Finding field x of the _next_ row
>> * Finding field x of the _previous_ row that meets a certain criteria
>> (which the current row may or may not meet)
>> )

> The first two are actually trivial - lag(field_x) over (order by [same
> order as query]) and lead(...).

Right.

> But the last one seems ellusive - How can I find the value of field x
> on the previous row WHERE a criteria is met? Is it possible to do this
> at all with a window function?

I don't see any way to achieve that with any of the built-in window
functions, but I believe it could be done by a custom window function.
Are you up for some C coding?

            regards, tom lane


pgsql-general by date:

Previous
From: Robert James
Date:
Subject: Re: Detecting change in event properties
Next
From: David Johnston
Date:
Subject: Re: Window functions and relational algebra