Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Recursive SQL Query

597564Oct 20 2010 — edited Oct 20 2010
Hi guys,

I have the following table:
SELECT node_from, node_to
  FROM nodes;
This table contains the following records:
NODE_FROM    NODE_TO

GT	TG
GG	GC
AT	TG
TG	GC
GC	CG
TG	GG
GC	CA
CG	GT
Represented graphically:

http://esser.hopto.org/temp/image1.JPG

My goal is to "span out" from a specific node, given a level:

http://esser.hopto.org/temp/image2.JPG

I produced the following query to attempt to find nodes at level 2:
SELECT node_from, node_to
  FROM nodes
 WHERE level <= 2
START WITH node_from = 'AT'
CONNECT BY NOCYCLE (PRIOR node_to) = node_from	
GROUP BY node_from, node_to;
However I'm missing a relationship (GT -> TG):
NODE_FROM     NODE_TO

TG	 GC
AT	 TG
TG	 GG
Represented graphically:

http://esser.hopto.org/temp/image3.JPG

Thank you for your time!!!!
This post has been answered by Aketi Jyuuzou on Oct 20 2010
Jump to Answer

Comments

Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Nov 17 2010
Added on Oct 20 2010
9 comments
2,626 views