Re: WITH RECURSIVE question

From: Andreas Kretschmer <akretschmer(at)spamfence(dot)net>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: WITH RECURSIVE question
Date: 2012-07-13 10:47:49
Message-ID: 20120713104749.GA13530@tux
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Marc Mamin <M(dot)Mamin(at)intershop(dot)de> wrote:

> WITH RECURSIVE struc (pref, id, depth ) AS (
> SELECT '', node, 1 from forest where node= 4
> UNION ALL
> SELECT (case when struc.pref= '' then '\' else struc.pref end )||
> '...' ,
> node,
> struc.depth +1
> FROM forest JOIN struc ON parent=struc.id
> )
> SELECT * FROM struc;
>
> (path,node,depth)
> 4 1
> \... 5 2
> \...... 6 3
>
> This is fine as long as I start with a given node (here node= 4).
>
> But How can I retrieve the complete structure in one query ?

Start with parent is null in the first query (instead of 'where
node=4').

*untested*

Andreas
--
Really, I'm not out to destroy Microsoft. That will just be a completely
unintentional side effect. (Linus Torvalds)
"If I was god, I would recompile penguin with --enable-fly." (unknown)
Kaufbach, Saxony, Germany, Europe. N 51.05082°, E 13.56889°

In response to

Browse pgsql-general by date

  From Date Subject
Next Message hubert depesz lubaczewski 2012-07-13 10:51:37 Re: WITH RECURSIVE question
Previous Message Leger Bertrand 2012-07-13 10:23:30 Is postgresql 9.1.* supporting plpython with python 2.*