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

Få stierne fra en database med punkter i sql

Brug en rekursiv cte med en array[array[source, destination]] som en aggregeringskolonne:

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. ora-12154 kunne ikke løses... med oracle instant client

  2. Når du bruger Symfonys ACL, er det så bedre at bruge en JOIN-forespørgsel eller en IN-array-forespørgsel?

  3. udføre en funktion i sql plus

  4. MySQL - Sådan tælles alle rækker pr. tabel i én forespørgsel