I'm doing a project in the field of multilevel marketing on .Net and SQL server. In the database it should save like a binary tree. How should i design a database?
|
1
|
|||
|
|
|
SQL Server 2008 has a built-in data-type called hierarchyid to store hierarchical information. Here are some pointers. And of course you can do this as mentioned by arsenmkrt in databases other than sqlserver2008. |
||
|
|
|
|
|
||||||||||||
|
|
|
This has been asked and answered before. Here's a pretty decent tutorial which explains why adjacency model proposed by arsenmkrt is less than ideal. Incidentally, it's the second link in Google (first is a wikipedia article) when searching for tree database model. |
||
|
