Way back when I was working in an Oracle shop I took the CONNECT_BY for granted. Now I'm stuck working with SQL Server 2005 and have some nasty object hierarchies. Specifically, we have a self referencing table where all child records have a column with their parent's id. Currently we have a view that maps children to levels in the hierarchy and a nasty query that does the heavy lifting to connect parents with their children. While this method works, it is far from elegant and reeks of taint. I'm just curious how other people retrieve hierarchical data from SQL Server 2005.
|
|
This creates your typical hierarchical table and uses a CTE to select the hierarchy structure and create a path for each item.
OUTPUT:
|
||
|
|
|
|
Having used both, I found CONNECT BY is somewhat more flexible and easier to use than CTE's. The question is not dissimilar to one I answered a few weeks ago. See Here for a brief comparison of CONNECT BY and CTE's and Here for an example of a query using CTE's. |
|||
|
|
|
Read this: http://www.sitepoint.com/article/hierarchical-data-database/2/ It should give you some ideas... |
||
|
|
|
Just FYI. SQL Server 2008 supports a new data type Hierarchy ID. |
|||
|
|
|
|
in SQL Server 2005 you can use Common Table Expressions (CTE) for this. |
||||
|
