SELECT all the rows where id is children of other node.

Поиск
Список
Период
Сортировка
От pabloa98
Тема SELECT all the rows where id is children of other node.
Дата
Msg-id CAEjudX6P5NaBPKGDV6f=KwEKGGG0-_R_PruqaY0gM5SWU-xA6A@mail.gmail.com
обсуждение исходный текст
Ответы Re: SELECT all the rows where id is children of other node.  (Rob Sargent <robjsargent@gmail.com>)
Re: SELECT all the rows where id is children of other node.  (Rob Sargent <robjsargent@gmail.com>)
Re: SELECT all the rows where id is children of other node.  (Rob Sargent <robjsargent@gmail.com>)
Re: SELECT all the rows where id is children of other node.  (Rob Sargent <robjsargent@gmail.com>)
Список pgsql-general
Hello,

I have a huge table (100 million rows) of relations between nodes by id in a Postgresql 11 server. Like this:

CREATE TABLE relations (
    pid INTEGER NOT NULL,
    cid INTEGER NOT NULL,
)

This table has parent-child relations references between nodes by id. Like:

pid -> cid
n1 -> n2
n1 -> n3
n1 -> n4
n2 -> n21
n2 -> n22
n2 -> n23
n22 -> n221
n22 -> n222

I would like to get a list of all the nodes being children (direct or indirect) of any other node.

Example. The children of:

1) n3: []  (n3 has not children)
2) n22: [n221, n222]  (n22 has 2 children: n221 and n222)
3) n1: [n2, n21, n22, n23, n221, n222]  (n1 has 6 children including indirect children).

this pseudo SQL: 

SELECT *
FROM relations
WHERE has_parent(myId)

It can be solved with a recursive function or stored procedure. But that requires several passes. Is it possible to solve it in one pass? Perhaps using some low-level function or join or some index expression or auxiliary columns?

It is OK to create an index or similar using recursive expressions. However, the SELECT expressions should be solved in one pass because of speed.


Pablo

В списке pgsql-general по дате отправления:

Предыдущее
От: Ubence Quevedo
Дата:
Сообщение: Can't install postgresql from official postgresql repo on RedHat 8?
Следующее
От: Vik Fearing
Дата:
Сообщение: Re: Retroactively adding send and recv functions to a type?