vote up 7 vote down star
4

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.

flag

5 Answers

vote up 11 vote down

This creates your typical hierarchical table and uses a CTE to select the hierarchy structure and create a path for each item.

CREATE TABLE tblHierarchy (ID int, ParentID int NULL, Name varchar(128));

INSERT INTO tblHierarchy VALUES (1, NULL, '1');
INSERT INTO tblHierarchy VALUES (2, NULL, '2');
INSERT INTO tblHierarchy VALUES (3, NULL, '3');
INSERT INTO tblHierarchy VALUES (4, 1, '1.1');
INSERT INTO tblHierarchy VALUES (5, 1, '1.2');
INSERT INTO tblHierarchy VALUES (6, 4, '1.1.1');

WITH Parent AS
(
    SELECT
    	ID,
    	ParentID,
    	Name AS Path
    FROM
    	tblHierarchy
    WHERE
    	ParentID IS NULL

    UNION ALL

    SELECT
    	TH.ID,
    	TH.ParentID,
    	CONVERT(varchar(128), Parent.Path + '/' + TH.Name) AS Path
    FROM
    	tblHierarchy TH
    INNER JOIN
    	Parent
    ON
    	Parent.ID = TH.ParentID
)
SELECT * FROM Parent

OUTPUT:

ID  ParentID	Path
1   NULL		1
2   NULL		2
3   NULL		3
4   1		1/1.1
5   1		1/1.2
6   4		1/1.1/1.1.1
link|flag
vote up 2 vote down

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.

link|flag
Tough luck that CONNECT BY doesn't exist in MSSQL. – Mark S. Rasmussen Oct 24 '08 at 23:01
vote up 1 vote down

Read this:

http://www.sitepoint.com/article/hierarchical-data-database/2/

It should give you some ideas...

link|flag
Yes, nested sets are definitely the way to go for unlimited hierarchies in an RDBMS. Sitepoint's description makes it sounds a bit more complicated than it actually is, and implementations can be simplified, eg. by having a 'rank order' and 'rank of next sibling' instead of 'left' and 'right'. – bobince Oct 24 '08 at 23:34
vote up 1 vote down

Just FYI. SQL Server 2008 supports a new data type Hierarchy ID.

link|flag
vote up 0 vote down

in SQL Server 2005 you can use Common Table Expressions (CTE) for this.

link|flag
the recursive force is WITH() you. har har har. – Darren Kopp Oct 24 '08 at 22:54
Could you show an example? – Mark Brady Nov 10 '08 at 21:55

Your Answer

Get an OpenID
or

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