Tagged Questions

13
votes
11answers
6k views

Optimized SQL for tree structures

How would you get tree-structured data from a database with the best performance? For example, say you have a folder-hierarchy in a database. Where the folder-database-row has ID, Name and ParentID ...
2
votes
2answers
59 views

I need to show data in a drop down like a tree structure, I tried but could not get it right in ASP.Net

I am working on a CMS which supports multiple Language and i want drop-down to show "pageNames" created similar to example below Home Page Second Page -Child Page1 -Child Page2 Third Page -Child ...
2
votes
4answers
80 views

Best practice for storing tree data in a database

I think the classic form of the problem is you have employees and employees have managers so the manager has a manager unless he's the CEO. So how do you store the data? Solution 1: It would seem ...
0
votes
2answers
68 views

root in tree like structure with auto-referencing foreign keys

My application uses some kind of "virtual folders" so I need to store the tree structure in the database. The table holding the data is quite simple, it has 3 columns: id_folder (int, primary key) ...