Re: Join table with itself for heirarchial system? - Mailing list pgsql-sql

From Oleg Bartunov
Subject Re: Join table with itself for heirarchial system?
Date
Msg-id Pine.GSO.4.56.0307201144080.724@ra.sai.msu.su
Whole thread Raw
In response to Join table with itself for heirarchial system?  (Benjamin Smith <bens@effortlessis.com>)
List pgsql-sql
You might look on our contrib/ltree module
(http://www.sai.msu.su/~megera/postgres/gist/ltree)
Oleg
On Wed, 16 Jul 2003, Benjamin Smith wrote:

> Can you query a set of nested entries to simulate a heirarchial system with a
> single query?
>
> I'm building a nested category table with a definition like below"
>
> CREATE TABLE category (
> id serial,
> parent integer not null,
> title varchar);
>
> Idea is that we can "nest" categories so that we have
>
> id         parent        title
> ----------------------------------------------
> 1        0            Clothing
> 2        1            Shirts
> 3        1            Pants
> 4        1            Socks
> 5        4            Male
> 6        4            Silk
>
> So that, for example, id 6 would be
>
> Clothing -> Socks -> Silk.
>
> So far, I've only been able to derive this with 3 queries - 1 to get the
> parent for id #6 (Silk) another to get the parent for id #4 (Socks) and
> finally for id #1 (Clothing) and since parent ==0 I stop.
>
> This seems wasteful - can this be done in a single query?
>
> ---------------------------(end of broadcast)---------------------------
> TIP 5: Have you checked our extensive FAQ?
>
>                http://www.postgresql.org/docs/faqs/FAQ.html
>
Regards,    Oleg
_____________________________________________________________
Oleg Bartunov, sci.researcher, hostmaster of AstroNet,
Sternberg Astronomical Institute, Moscow University (Russia)
Internet: oleg@sai.msu.su, http://www.sai.msu.su/~megera/
phone: +007(095)939-16-83, +007(095)939-23-83


pgsql-sql by date:

Previous
From: Stephan Szabo
Date:
Subject: Re: min() and NaN
Next
From: Bruce Momjian
Date:
Subject: Re: inet versus text for ip addresses