Good Overviews

Generally speaking you're making a decision between fast read times (e.g. nested set) or fast write times (adjacency list). Usually you end up with a combination of the options below that best fit your needs. The following provides some in depth reading:

Options

Ones I am aware of and general features:

  1. Adjacency List:
    • Columns: ID, ParentID
    • Easy to implement.
    • Cheap node moves, inserts, and deletes.
    • Expensive to find level (can store as a computed column), ancestry & descendants (Bridge Hierarchy combined with level column can solve), path (Lineage Column can solve).
    • Use Common Table Expressions in those databases that support them to traverse.
  2. Nested Set (a.k.a Modified Preorder Tree Traversal)
    • First described by Joe Celko - covered in depth in his book Trees and Hierarchies in SQL for Smarties
    • Columns: Left, Right
    • Cheap level, ancestry, descendants
    • Compared to Adjacency List, moves, inserts, deletes more expensive.
    • Requires a specific sort order (e.g. created). So sorting all descendants in a different order requires additional work.
  3. Nested Intervals
    • Combination of Nested Sets and Materialized Path where left/right columns are floating point decimals instead of integers and encode the path information. In the later development of this idea nested intervals gave rise to matrix encoding.
  4. Bridge Table (a.k.a. Closure Table: some good ideas about how to use triggers for maintaining this approach)
    • Columns: ancestor, descendant
    • Stands apart from table it describes.
    • Can include some nodes in more than one hierarchy.
    • Cheap ancestry and descendants (albeit not in what order)
    • For complete knowledge of a hierarchy needs to be combined with another option.
  5. Flat Table
    • A modification of the Adjacency List that adds a Level and Rank (e.g. ordering) column to each record.
    • Expensive move and delete
    • Cheap ancestry and descendants
    • Good Use: threaded discussion - forums / blog comments
  6. Lineage Column (a.k.a. Materialized Path, Path Enumeration)
    • Column: lineage (e.g. /parent/child/grandchild/etc...)
    • Limit to how deep the hierarchy can be.
    • Descendants cheap (e.g. LEFT(lineage, #) = '/enumerated/path')
    • Ancestry tricky (database specific queries)

Database Specific Notes

MySQL

Oracle

PostgreSQL

SQL Server

  • General summary
  • 2008 offers HierarchyId data type appears to help with Lineage Column approach and expand the depth that can be represented.
link|improve this question
3  
IMO Transitive Closure Table method missing from your list is more significant than #4-5. – Tegiri Nenashi Oct 29 '10 at 17:00
@Tegiri Nenashi: Is this the same thing as a Closure Table as described here: slideshare.net/billkarwin/models-for-hierarchical-data? – orangepips Oct 29 '10 at 19:13
Yes. "Maintaining Transitive Closure of Graphs in SQL" by Libkin et.al is classic paper on the subject. – Tegiri Nenashi Oct 29 '10 at 19:33
@Tegiri Nenashi: +1 OK, I believe this is the same thing as - or very similar to - a Bridge Table. I've added a name and link in the question above. – orangepips Oct 29 '10 at 19:59
feedback

4 Answers

up vote 9 down vote accepted

This is kind of a question that is still interesting even after all big 3 vendors implemented Recursive WITH clause. I'd suggest that different readers would be pleased with different answers.

  1. Comprehensive list of references by Troels Arvin.
  2. For the lack of competition, introductory textbook by Joe Celko "Trees and Hierarchies in SQL for Smarties" can indeed be considered a classics.
  3. Review of various tree encodings with emphasis to nested intervals.
link|improve this answer
4  
I guess with the big 3 you mean Oracle, IBM and Microsoft. Don't forget that Firebird, PostgreSQL and H2 also support recursive common table expressions – a_horse_with_no_name Oct 29 '10 at 16:48
+1 for the comprehensive list – orangepips Oct 29 '10 at 19:04
2  
+1 to @a_horse_with_no_name for the CTE knowledge with other DBs. – orangepips Oct 29 '10 at 19:05
Accepting as the answer because the Troels Arvin link is by far the most comprehensive. – orangepips Oct 31 '10 at 19:36
feedback

This is a very partial answer to your question, but I hope still useful.

Microsoft SQL Server 2008 implements two features that are extremely useful for managing hierarchical data:

  • the HierarchyId data type.
  • common table expressions, using the with keyword.

Have a look at this article for starts. See also my own question here.

link|improve this answer
Interesting, the HierarchyId, didn't know about that one: msdn.microsoft.com/en-us/library/bb677290.aspx – orangepips Oct 29 '10 at 0:38
Indeed. I work with a lot of recursively hierarchical data, and I find common table expressions extremely useful. See msdn.microsoft.com/en-us/library/ms186243.aspx for an intro. – CesarGon Oct 29 '10 at 0:41
+1 Wow, hadn't seen HierarchyId before now. Goodbye computed and denormalized column maintenance. – JeremyWeir Oct 29 '10 at 0:45
feedback

Joe Celko wrote the book on SQL Trees & Hiearichies

link|improve this answer
+1 this is a classic book. – orangepips Oct 29 '10 at 13:13
feedback

Some articles from my blog on the subject:

link|improve this answer
+1 forgot about MySQL session variables. Knew nothing about PostgreSQL, good to know it supports CTEs. – orangepips Oct 29 '10 at 13:12
feedback

Your Answer

 
or
required, but never shown

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