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

  • Home
  • SEARCH
  • 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 7733679
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T07:03:45+00:00 2026-06-01T07:03:45+00:00

I am using T/SQL in SQL Server 2008 I have a table MyTable with

  • 0

I am using T/SQL in SQL Server 2008

I have a table MyTable with the following columns:

 CHILD
 PARENT
 HIERARCHY 

The HIERARCHY column is currently empty, but I would like to populate it.

I have some code which creates a hierarchy ID (adapted from the code in Recursive Child/Parent queries in T/SQL)
This code works very nicely.

with n(CHILD, PARENT, GENERATION, hierarchy) as (
select CHILD, PARENT,0, CAST(CHILD as nvarchar) as GENERATION from MyTable
where PARENT=1 
union all
select nplus1.CHILD, nplus1.PARENT, GENERATION+1, 
cast(n.hierarchy + '/' + CAST(nplus1.CHILD as nvarchar) as  nvarchar)
 from 
MyTable nplus1 inner join n on nplus1.PARENT=n.CHILD and    
)

I can see the results of this query by doing:

select CHILD,GENERATION,Hierarchy from n

However I would like to put the result back in the column Hierarchy in MyTable.
This code does not work!

update MyTable e
set HIERARCHY='/'+(select hierarchy from n where n.CHILD=e.CHILD)

Does anyone know how to do it? Thank you!

  • 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-06-01T07:03:46+00:00Added an answer on June 1, 2026 at 7:03 am

    Maybe something like this:

    ;with n(CHILD, PARENT, GENERATION, hierarchy) as (
    select CHILD, PARENT,0, CAST(CHILD as nvarchar) as GENERATION from MyTable
    where PARENT=1 
    union all
    select nplus1.CHILD, nplus1.PARENT, GENERATION+1, 
    cast(n.hierarchy + '/' + CAST(nplus1.CHILD as nvarchar) as  nvarchar)
     from 
    MyTable nplus1 inner join n on nplus1.PARENT=n.CHILD and    
    )
    UPDATE MyTable 
       SET Hierarchy=n.hierarchy
    FROM MyTable 
    JOIN n
      ON n.CHILD=MyTable.CHILD
    

    Edit

    You mean like this:

    ;with n(CHILD, PARENT, GENERATION, hierarchy) as (
    select CHILD, PARENT,0, CAST(CHILD as nvarchar) as GENERATION from MyTable
    where PARENT=1 
    union all
    select nplus1.CHILD, nplus1.PARENT, GENERATION+1, 
    cast(n.hierarchy + '/' + CAST(nplus1.CHILD as nvarchar) as  nvarchar)
     from 
    MyTable nplus1 inner join n on nplus1.PARENT=n.CHILD and    
    )
    UPDATE MyTable 
    SET Hierarchy='/'+n.hierarchy+'/' 
    FROM MyTable e 
    JOIN n ON n.child=e.child
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using SQL Server 2008 and I have a table with three columns: Length
Using SQL Server 2008. I have a table variable with a single column and
I'm using SQL Server 2008 R2 and have a simple table with a column
Am using Sql Server 2008, I have a column named Date in my table,
I am using SQL Server 2008 . I have a table with the following
I'm using SQL Server 2008 and I have a table that has a 'Status'
I am using T/SQL in Microsoft SQL Server 2008 I have a table CREATE
I am using SQL Server 2008. I have a table A which accepts many
I have Database table and I am using SQL Server 2008. The table contins
I'm using SQL Server 2008. I have a table with over 3 million records,

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.