I've got a Table with the following tree structure:
How can I extract all data from a specific node of the tree with select or other statement, or are there any links I could go to look up how one handles retrieving such tree structures from a datatable?
Any suggestions would be highly appreceated
thanks in advance
Andreas
Code:
ID Name Parent
--- -------------- ---
1 EUROPE 0
12 CENTRAL EUROPE 1
30 SWITZERLAND 12
40 FRANCE 12
50 ITALY 12
13 SCANDINAVIA 1
60 SWEDEN 13
70 DENMARK 13
...
Any suggestions would be highly appreceated
thanks in advance
Andreas