Creating a pseudo-linked list in sql

I have a table with the following columns

table: route
columns: id, location, order_id

and has meanings such as

id, location, order_id
1, London, 12
2, Amsterdam, 102
3, Berlin, 90
5, Paris, 19

Is it possible to make a sql select statement in postgres that will return every row along with id with the next highest order_id? So I want something like ...

id, location, order_id, next_id
1, London, 12, 5
2, Amsterdam, 102, NULL
3, Berlin, 90, 2
5, Paris, 19, 3

thank

+3
source share
3 answers
select 
  id, 
  location, 
  order_id,
  lag(id) over (order by order_id desc) as next_id
from your_table
+6
source

Creating a test bench first:

CREATE TABLE route (id int4, location varchar(20), order_id int4);
INSERT INTO route VALUES
    (1,'London',12),(2,'Amsterdam',102),
    (3,'Berlin',90),(5,'Paris',19);

Inquiry:

WITH ranked AS (
    SELECT id,location,order_id,rank() OVER (ORDER BY order_id)
      FROM route)
SELECT b.id, b.location, b.order_id, n.id
  FROM ranked b
  LEFT JOIN ranked n ON b.rank+1=n.rank
  ORDER BY b.id;

You can learn more about window functions in the documentation .

+1
source

Yes

select * ,
(select top 1 id from routes_table where order_id > main.order_id order by 1 desc)
from routes_table main
0
source

All Articles