Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1082901
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T22:21:50+00:00 2026-05-16T22:21:50+00:00

I need to be able to return a list of all children given a

  • 0

I need to be able to return a list of all children given a parent Id at all levels using SQL.

The table looks something like this:

ID   ParentId   Name
---------------------------------------
1    null       Root
2    1          Child of Root
3    2          Child of Child of Root

Give an Id of ‘1’, how would I return the entire list…? There is no limitation on the depth of the nesting either…

Thanks,
Kieron

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T22:21:50+00:00Added an answer on May 16, 2026 at 10:21 pm

    To get all children for a given @ParentId stored in that manner you could use a recursive CTE.

    declare @ParentId int
    --set @ParentId = 1
    
    ;WITH T AS
    (
    select 1 AS ID,null AS ParentId, 'Root' as [Name] union all
    select 2,1,'Child of Root' union all
    select 3,2,'Child of Child of Root'
    ),
    cte AS
    (
    SELECT ID, ParentId, Name
    FROM T 
    WHERE ParentId = @ParentId  OR (ParentId IS NULL AND @ParentId IS NULL)
    UNION ALL
    SELECT T.ID, T.ParentId, T.Name
    FROM T 
    JOIN cte c ON c.ID = T.ParentId
    )
    SELECT ID, ParentId, Name
    FROM cte
    OPTION (MAXRECURSION 0)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to be able to return a list of files that meet some
I need to be able to make a list that contains all possible combinations
I need to be able to access a list throughout my Rails project. For
I'm able to parse through the directory and list all images with any of
I need to be able to have a list of components in a class
I need to build a list of all roles on an ASP.NET web site,
I'm using NHibernate 2, and I'd like to be able to do the following:
I am writing a method that is passed a List<AssetMovements> where AssetMovements looks something
Users of the website need to able to store images in their area ,
Need to be able to pull Magento products into an external template. Need to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.