I want to know how to retrieve results in a SQL query doing some logic comparison with the next or previous rows. I’m using PostgreSQL.
Example
Supposing I have a table in my database with two attributes (ordered position and random numbers), I want to retrieve the odd numbers that are between even numbers. How can I do this?
The real usage
I want to find words that are between two another words which have the category NAME (and the word is not a name). The ordering is provided by sentence and position.
Edit
I want to know if the Window function of PostgreSQL are best solution for this kind of problem than doing queries. I heard about them, but never used.
This is my solution using
WINDOW functions. I used thelagandleadfunctions. Both returns a value from a column from a row in offset from the current row.laggoes back andleadgoes next in the offset.Simplified version:
Major points
= ANY()is not needed, the window function returns a single valuePARTITION BY– the ORDER BY applies within partitions