PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Come posso raggruppare bambini e genitori in un'unica query?

Per un unico livello di annidamento , questo può sembrare quasi banale:

SELECT *
FROM   transactions
ORDER  BY COALESCE(parent_id, id), id