What are the ways that you use to model and retrieve hierarchical info in a database?
|
11
|
|
|
|
|
|
The definitive pieces on this subject have been written by Joe Celko, and he has worked a number of them into a book called Joe Celko's Trees and Hierarchies in SQL for Smarties. He favours a technique called directed graphs. An introduction to his work on this subject can be found here |
||
|
|
|
We had the same issue when we implemented a tree component for [fleXive] and used the nested set tree model approach mentioned by tharkun from the MySQL docs. In addition to speed things (dramatically) up we used a spreaded approach which simply means we used the maximum Long value for the top level right bounds which allows us to insert and move nodes without recalculating all left and right values. Values for left and right are calculated by dividing the range for a node by 3 und use the inner third as bounds for the new node. A java code example can be seen here. |
||
|
|
|
|
I prefer a mix of the techinques used by Josh and Mark Harrison: Two tables, one with the data of the Person and other with the hierarchichal info (person_id, parent_id [, mother_id]) if the PK of this table is person_id, you have a simple tree with only one parent by node (which makes sense in this case, but not in other cases like accounting accounts) This hiarchy table can be transversed by recursive procedures or if your DB supports it by sentences like SELECT... BY PRIOR (Oracle). Other posibility is if you know the max deep of the hierarchy data you want to mantain is use a single table with a set of columns per level of hierarchy |
||
|
|
|
|
I've got to disagree with Josh. What happens if you're using a huge hierarchical structure like a company organization. People can join/leave the company, change reporting lines, etc... Maintaining the "distance" would be a big problem and you would have to maintain two tables of data. This query (SQL Server 2005 and above) would let you see the complete line of any person AND calculates their place in the hierarchy and it only requires a single table of user information. It can be modified to find any child relationship.
|
||
|
|
|
|
A portable technique is discussed in this paper: |
||
|
|
|
|
If you're using SQL Server 2005 then this link explains how to retrieve hierarchical data. Common Table Expressions (CTEs) can be your friends once you get comfortable using them. |
||
|
|
|
|
Oracle: SELECT ... START WITH ... CONNECT BY Oracle has an extension to SELECT that allows easy tree-based retrieval. Perhaps SQL Server has some similar extension? This query will traverse a table where the nesting relationship is stored in parent and child columns.
|
|||
|
|
|
|
FYI: SQL Server 2008 introduces a new HierarchyID data type for this sort of situation. Gives you control over where in the "tree" your row sits, horizontally as well as vertically. |
||
|
|
|
|
What's the best way to represent a hierachy in a SQL database? A generic, portable technique? Let's assume the hierachy is mostly read, but isn't completely static. Let's say it's a family tree. Here's how not to do it:
And inserting data like this:
Instead, split your nodes and your relationships into two tables.
Data is created like this:
you can now run arbitary queries that don't involve joining the table back on itself, which would happen if you have the heirachy relationship in the same row as the node. Who has grandparents?
All your descendants:
Who are uncles?
You avoid all the problems of joining a table to itself via subqueries, a common limitation is 16 subsuqeries. Trouble is, maintaining the ancestor table is kind of hard - best done with a stored procedure. |
|||
|
