Recursive query for Product Tree - Mailing list pgsql-sql

From devil live
Subject Recursive query for Product Tree
Date
Msg-id BAY20-F2287862C790067221BA8B0EE4C0@phx.gbl
Whole thread Raw
List pgsql-sql
I have product tree for a product

product_tree table :
product_code, stock_code, amount_ratio
152.001.001,  151.001.001, 1
152.001.001,  150.001.001, 2
151.001.001   150.003.003, 3
151.001.001   150.009.001, 1


I need to write a query with result:

152.001.001,  150.003.003, 1
152.001.001,  150.009.001, 1
152.001.001,  150.001.001, 2


i.e. for 151 we have another node and i do not wanna see 151 here...but its 
ingredients..

it is kind of recursive query how can i write it ? any help?

Thx in advance

_________________________________________________________________
Spam filtresi ile vir�slere karsi en g�venilir koruma, MSN PC Koruma'dan 
ge�er. http://www.msn.com.tr/security/



pgsql-sql by date:

Previous
From: Kevin Hunter
Date:
Subject: Re: Selecting rows with "static" ordering
Next
From: David Flegl
Date:
Subject: NEW to plpythonu function?