I have a table records(ID, ParentID) containg this data

ID   ParentID  
1    null  
2    1  
3    2   
4    2  
5    3  
6    null  
7    6  

If you draw this table in hierarchy as a family 1,2,3,4,5 will be related to each other.

I want to find a way, where I can pass an ID like 3 it give me the others family members using SQL or using C#

3 - result 1,2,4,5
2 - result 1,3,4,5
6 - result 7
and so on

I want to find my parent and his parents and childs and my child and his childs
LIKE THE EXAMPLES

link|improve this question

55% accept rate
How deep is the actual data? A CTE may do the job... When I've had to do this, though, I've just created a node-tree (as tables) manually, allowing me to query via BETWEEN – Marc Gravell Apr 27 '10 at 12:00
the depth of the data may be 3 or 4 levels – RMohammed Apr 27 '10 at 12:22
Do you have two rows with ID=3? I assume then that ID is not unique or identifying after all? – Lasse V. Karlsen Apr 27 '10 at 12:40
1  
Is the test data representative of the full dataset? For example, might there be some IDs that exist in ParentID but not in ID (e.g. 5). Also, the test case for ID 2 doesn't match the description of what you want to find. ID 2 has parent 1 and child 3 but 3 has no children so the result according to the description should be just 1,3, shouldn't it? – Daniel Renshaw Apr 27 '10 at 13:00
sorry "Daniel Renshaw", I edited my question , you are right, now I hope it becomes clear – RMohammed Apr 27 '10 at 13:12
feedback

3 Answers

up vote 3 down vote accepted

http://stackoverflow.com/questions/239275/how-do-i-create-a-recursive-query-in-mssql-2005

hope this helps :)

link|improve this answer
This solution give me only my childs, I need also my parents and their childs – RMohammed Apr 27 '10 at 13:16
1  
see the last line in the query: on c.ParentId = ch.CustomerID this was used to look for children. on c.CustomerID = ch.ParentId would look for parents. Use Union to combine both result sets. – AlexanderMP Apr 27 '10 at 13:20
Thank You so Much "Alexander" – RMohammed Apr 27 '10 at 14:33
feedback

This should do it.

CREATE TABLE #Test
(
    ID int,
    ParentID int
)

INSERT #Test VALUES (1, null)
INSERT #Test VALUES (2, 1)
INSERT #Test VALUES (3, 2)
INSERT #Test VALUES (4, 2)
INSERT #Test VALUES (5, 3)
INSERT #Test VALUES (6, null)
INSERT #Test VALUES (7, 6)

DECLARE @QueryId int
SET @QueryId = 2

-- My parents
SELECT [ParentID] FROM #Test WHERE [ID] = @QueryID AND [ParentID] IS NOT NULL
UNION -- My parent's parents
SELECT [ParentID] FROM #Test WHERE [ID] IN (SELECT [ParentID] FROM #Test WHERE [ID] = @QueryID) AND [ParentID] IS NOT NULL
UNION -- My parent's children (i.e. my siblings), excluding me
SELECT [ID] FROM #Test WHERE [ParentID] IN (SELECT [ParentID] FROM #Test WHERE [ID] = @QueryID) AND [ID] != @QueryID
UNION -- My chidren
SELECT [ID] FROM #Test WHERE [ParentID] = @QueryId
UNION -- My chidren's children
SELECT [ID] FROM #Test WHERE [ParentID] IN (SELECT [ID] FROM #Test WHERE [ParentID] = @QueryId)

DROP TABLE #Test
link|improve this answer
Another good solution, but it is only for 2 levels, if you set @QueryId = 5 ,result is 2,3 where it should be 1,2,3,4 as 1,2,3 is in the tree of myParents and 4 come from one of my parents, Anyway thank You so much and thanks for all the members, I take the information I need from each of you all. – RMohammed Apr 27 '10 at 14:45
feedback

You may want to take a look at the Hierarchy type which fits your problem seemingly well. Although this is only available with SQL Server 2008

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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