up vote 1 down vote favorite
2
share [g+] share [fb]

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?

link|improve this question

56% accept rate
duplicate: stackoverflow.com/questions/38801/… and others more... – markus Jul 15 '09 at 6:21
feedback

3 Answers

up vote 1 down vote accepted

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.

link|improve this answer
feedback
id | parentid | name
---------------------
 1 | null     | node1
 2 | 1        | node2
 3 | 1        | node3
link|improve this answer
3  
Exercise: Write a query that returns all decedents from node1. – Tom Lokhorst Jul 15 '09 at 6:03
you mean this? select * From tab where parentid = (select id from table where name = 'node1') – ArsenMkrt Jul 15 '09 at 6:07
That's hilarious :-) However, you probably should have pointed out a better alternative, like using nested sets model. – ChssPly76 Jul 15 '09 at 6:08
2  
To Arsenmkrt - no, that would be direct descendants. You were asked for all descendants :) – ChssPly76 Jul 15 '09 at 6:09
feedback

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.

link|improve this answer
+1 I didn't think about that before ;) – ArsenMkrt Jul 15 '09 at 6:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.