creating a hierarchy for building tree -
08-18-2006
, 07:07 AM
hi guys
I have a table structure like below
Parent Child
PA A1
A1 A11
A1 A12
PA A2
PB A3
PB A12
Now using a view I need to display data in this format
Item Parent ItemID
PA null 1
A1 PA 2
A2 PA 3
A11 A1 4
A12 A1 5
PB null 6
A3 PB 7
A12 PB 8
It would be nice if someone help me.... |