Re: Recursive use - Mailing list pgsql-admin

From Jim C. Nasby
Subject Re: Recursive use
Date
Msg-id 20061010151541.GF72517@nasby.net
Whole thread Raw
In response to Re: Recursive use  ("Jay A. Kreibich" <jak@uiuc.edu>)
Responses Re: Recursive use  ("Jay A. Kreibich" <jak@uiuc.edu>)
List pgsql-admin
On Fri, Oct 06, 2006 at 10:37:26AM -0500, Jay A. Kreibich wrote:
>   These are generally referred to as "Hierarchical Queries" and center
>   around the idea of a self-referencing table (such as an employee
>   table with a "manager" field that is a FK to another row in the same
>   table).  This essentially makes a tree-like structure.
<snip>
>   As pointed out by others, the most general way to deal with this in
>   PostgreSQL is to write PL/PgSQL (or some other language) functions
>   that can generate the specific queries you need.  It isn't always
>   pretty, but it can be made to work for a specific set of queries.

There are also other ways to represent this type of information without
using hierarchical queries. Joe Celko presents two methods in SQL For
Smarties.

There's also the ltree module in contrib that might be of some use.
--
Jim Nasby                                            jim@nasby.net
EnterpriseDB      http://enterprisedb.com      512.569.9461 (cell)

pgsql-admin by date:

Previous
From: "Jim C. Nasby"
Date:
Subject: Re: postgres in HA constellation
Next
From: "Jim C. Nasby"
Date:
Subject: Re: Copying data from table to table (cloned tables)