Re: [HACKERS] recursive views

From: Bruce Momjian <maillist(at)candle(dot)pha(dot)pa(dot)us>
To: meskes(at)topsystem(dot)de (Michael Meskes)
Cc: pgsql-hackers(at)postgreSQL(dot)org
Subject: Re: [HACKERS] recursive views
Date: 1998-04-16 17:21:55
Message-ID: 199804161721.NAA22917@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

>
> I had some time during vacation to thing about postgresql. And here's the
> feature I'd really like to see. This one would put us miles in front of all
> others: recursive view definitions.
>
> Just one short example:
>
> There is that well-known parent relation: par (parent, child). The view anc
> now should list all ancestors:
>
> create view anc as
> select parent as ancestor, child as person from par
> union
> select anc.ancestor as ancestor, par.child as person
> from anc, par
> where anc.person = par.parent;
>
> What do you guys think of this idea? How much work would it be to implement
> it?

You want views of UNION's. That is not hard to do.

--
Bruce Momjian | 830 Blythe Avenue
maillist(at)candle(dot)pha(dot)pa(dot)us | Drexel Hill, Pennsylvania 19026
+ If your life is a hard drive, | (610) 353-9879(w)
+ Christ can be your backup. | (610) 853-3000(h)

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Bruce Momjian 1998-04-16 17:22:32 Re: [HACKERS] recursive views
Previous Message The Hermit Hacker 1998-04-16 16:05:59 Re: [HACKERS] Status of 6.3.2 snapshot on alpha/Digital Unix