Tagged Questions

19
votes
7answers
13k views

How to store directory / hierarchy / tree structure in the database?

How do i store a directory / hierarchy / tree structure in the database? Namely MSSQL Server. @olavk: Doesn't look like you've seen my own answer. The way i use is way better than recursive queries ...
14
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
69 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 ...