Hierarchical query's - Mailing list pgsql-general

From Cláudia Morgado
Subject Hierarchical query's
Date
Msg-id 012001c3997e$8be9f300$15011aac@widesoft.com.br
Whole thread Raw
Responses Re: Hierarchical query's  (Greg Stark <gsstark@mit.edu>)
Re: Hierarchical query's  (Pavel Stehule <stehule@kix.fsv.cvut.cz>)
List pgsql-general
Hello!
 
Oracle has the option with the SQL CONECT BY statement to run through a hierarchical database with a single SQl-statement:

<!--SQL SELECT ms_id,ms_parent FROM messages CONNECT BY PRIOR ms_id = ms_parent START WITH ms_id = 1 -->
 
Result-set (example):
 
ms_id parent_id 1 1.1 1 1.1.1 1.1 1.1.2 1.1 1.1.3 1.1 1.2 1 1.2.1 1.2
 
etc
 
 
I need to do this in PostgreSql.
 
This is possible in the Postgre?
 
 
regards,
Cláudia Morgado and Carla Mello
 
 

pgsql-general by date:

Previous
From: Oksana Yasynska
Date:
Subject: Re: plpgsql: return multiple result sets or temp table
Next
From: James Felix Black
Date:
Subject: Re: Clustering for performance and fail over