connectby - Mailing list pgsql-sql

From sector119@mail.ru
Subject connectby
Date
Msg-id 20031027144717.GA7838@city.gov.te.ua
Whole thread Raw
List pgsql-sql
hi

I have menu table:
 id          | integer | not null default
 nextval('public.menu_id_seq'::text)
 parent_id   | integer |
 description | text    |

 I do select:
 test=> SELECT * FROM connectby('menu','id','parent_id','2',0,'~')
 t(id integer, parent_id integer, level int, branch text);

id | parent_id | level |   branch
 ----+-----------+-------+-------------
   2 |           |     0 | 2
   4 |         2 |     1 | 2~4
   7 |         4 |     2 | 2~4~7
  10 |         7 |     3 | 2~4~7~10
  16 |        10 |     4 | 2~4~7~10~16
   9 |         4 |     2 | 2~4~9

How am I able to select description file from menu table,
not only id, parent_id, level, branch fields?

--
WBR, sector119

pgsql-sql by date:

Previous
From: "Antony Gubert"
Date:
Subject: unsubscribe
Next
From: Christoph Haller
Date:
Subject: Re: extend INSERT by 'INSERT INTO table FETCH ... FROM cursor' syntax