PostgreSQL
 sql >> Baza danych >  >> RDS >> PostgreSQL

Jak pokazać dziadka w hierarchii sql?

Jesteś na dobrej drodze. Rozważ użycie tego :

with recursive tree as (
  select id, 
         parent_id, 
         array[id] as all_parents,
         name as parent_name
  from hierarchy
  where parent_id = 0
  union all 
  select c.id, 
         p.parent_id,
         p.all_parents,
         p.parent_name 
  from hierarchy c
     join tree p
      on c.parent_id = p.id 
     and c.id <> all (p.all_parents) 
)
select id, parent_id, parent_name
  from tree;

Demonstracja




  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Dlaczego insert nie działa i nie wyświetla żadnego błędu w postresql?

  2. wybierz z ... - na podstawie wartości w formacie JSON

  3. Konfiguracja Postgresa w Grails

  4. Zautomatyzowane testowanie kopii zapasowych PostgreSQL

  5. Błąd połączenia podczas łączenia się z PostgreSQL jako użytkownik postgres?