philbullock1223
Registered User.
- Local time
- Today, 16:01
- Joined
- Dec 31, 2011
- Messages
- 55
I have a query issue. I have a data-set that is somewhat tree-like. My data looks something like this:
# | ID | NEXT
01 | Leaf1 | Twig1
02 | Leaf2 | Twig2
03 | Leaf3 | Twig2
04 | Twig1 | Branch1
05 | Twig2 | Branch1
06 | Branch1 | Trunk1
I would like to create a query that will show all "down trunk" records in the data set. In other words, if I run the query on 02 I will get records 05 and 06. If I run the query on 01 I will get records 04 and 06.
I am pretty familiar with queries and SQL statements, but I have not found a way to create a query that will give me these results.
Any suggestions?
Phil
# | ID | NEXT
01 | Leaf1 | Twig1
02 | Leaf2 | Twig2
03 | Leaf3 | Twig2
04 | Twig1 | Branch1
05 | Twig2 | Branch1
06 | Branch1 | Trunk1
I would like to create a query that will show all "down trunk" records in the data set. In other words, if I run the query on 02 I will get records 05 and 06. If I run the query on 01 I will get records 04 and 06.
I am pretty familiar with queries and SQL statements, but I have not found a way to create a query that will give me these results.
Any suggestions?
Phil