Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

One level recursive search 1

Status
Not open for further replies.

xwb

Programmer
Jul 11, 2002
6,828
0
36
GB
I need to look up the name of the parent node and print the child node's name along with the parent node's name. I'm doing this in SQLite which means I have to work with a very restricted subset. So that I don't breach the NDA that I've signed, I've made up data similar to what I would use.
Code:
id,name,parent,
8,Zadok,7,
7,Aaron,4,
6,Moses,4,
5,Judah,1,
4,Levi,1,
3,Simon,1,
2,Reuben,1,
1,Jacob,0,
The query is
Code:
select L1.name, L2.name as parent
from lut L1, lut L2
where L1.parent=L2.id
It is fast for 10 items but I'll be dealing with 100s. I'm just wondering whether there is a neater way or even more efficient way of doing this or is this as good as it gets.
 
As you asked in the ANSI SQL forum you may try to avoid a cartesian product (cross join):
Code:
SELECT L1.name, L2.name AS parent
FROM lut L1 INNER JOIN lut L2 ON L1.parent=L2.id

Hope This Helps, PH.
FAQ219-2884
FAQ181-2886
 
Brilliant. Thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top