sql >> Database >  >> RDS >> PostgreSQL

Haal de paden uit een database met punten in sql

Gebruik een recursieve cte met een array[array[source, destination]] als een aggregatiekolom:

with recursive cte(source, destination, path) as (
    select source, destination, array[array[source, destination]]
    from points
union all
    select p.source, p.destination, path || array[p.source, p.destination]
    from cte c
    join points p on c.destination = p.source
    where not array[array[p.source, p.destination]] <@ path
)
select distinct on (path[1:1]) path
from (
    select distinct on (source, destination) *
    from cte
    order by source, destination, array_length(path, 1) desc
    ) s    
order by path[1:1], array_length(path, 1) desc;

        path         
---------------------
 {{1,2},{2,3},{3,7}}
 {{5,7}}
 {{9,12}}
(3 rows)


  1. Oracle draait rijen naar kolommen

  2. Een nieuwe MySQL-database maken met go-sql-driver

  3. Hoe Mysql-wachtwoord te verbergen in een docker-compose met env_file

  4. Gebruik PHP om mysql-waarden in het JSON-bestand te dumpen