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 897703
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T14:55:31+00:00 2026-05-15T14:55:31+00:00

I have a table where the data are like Data a b c I

  • 0

I have a table where the data are like

Data 

 a 
 b 
 c 

I need to write a SQL query to bring the following output

Data 

abc 

How to do the same by using in SQL Server 2000
Thanks

  • 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-15T14:55:31+00:00Added an answer on May 15, 2026 at 2:55 pm

    I don’t know how/if it can be done with XML RAW. This approach works in SQL2000 though.

    DECLARE @Data varchar(8000)
    set @Data =''
    select @Data = @Data + Data
    FROM @t 
    ORDER BY Data
    
    SELECT @Data
    

    Edit Oh I’ve just seen your other question where Cade gave you a link. Doesn’t KM’s answer on that link work for you?

    KM’s test query

    --combine parent and child, children are CSV onto parent row
    CREATE TABLE #TableA (RowID int, Value1 varchar(5), Value2 varchar(5))
    INSERT INTO #TableA VALUES (1,'aaaaa','A')
    INSERT INTO #TableA VALUES (2,'bbbbb','B')
    INSERT INTO #TableA VALUES (3,'ccccc','C')
    
    CREATE TABLE #TableB (RowID int, TypeOf varchar(10))
    INSERT INTO #TableB VALUES (1,'wood')
    INSERT INTO #TableB VALUES (2,'wood')
    INSERT INTO #TableB VALUES (2,'steel')
    INSERT INTO #TableB VALUES (2,'rock')
    INSERT INTO #TableB VALUES (3,'plastic')
    INSERT INTO #TableB VALUES (3,'paper')
    
    SELECT
        a.*,dt.CombinedValue
        FROM #TableA        a
            LEFT OUTER JOIN (SELECT
                                 c1.RowID
                                     ,STUFF(REPLACE(REPLACE(
                                              (SELECT 
                                                   ', ' + TypeOf as value
                                                   FROM (SELECT
                                                             a.RowID,a.Value1,a.Value2,b.TypeOf
                                                             FROM #TableA                 a
                                                                 LEFT OUTER JOIN #TableB  b ON a.RowID=b.RowID
                                                        ) c2
                                                   WHERE c2.rowid=c1.rowid
                                                   ORDER BY c1.RowID, TypeOf
                                                   FOR XML RAW
                                              )
                                             ,'<row value="',''),'"/>','')
                                       , 1, 2, '') AS CombinedValue
                                 FROM (SELECT
                                           a.RowID,a.Value1,a.Value2,b.TypeOf
                                           FROM #TableA                 a
                                               LEFT OUTER JOIN #TableB  b ON a.RowID=b.RowID
                                      ) c1
                                 GROUP BY RowID
                            ) dt ON a.RowID=dt.RowID
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

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.