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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T22:32:30+00:00 2026-06-07T22:32:30+00:00

I have a table as below DECLARE @T TABLE(Data VARCHAR(MAX)) INSERT INTO @T SELECT

  • 0

I have a table as below

DECLARE @T TABLE(Data VARCHAR(MAX))
INSERT INTO @T
SELECT 'SQL' UNION ALL SELECT 'JOB'

need output as below but without using any UDF.

Data  String
------------
SQL   S,Q,L
JOB   J,O,B

Please help me on this

  • 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-07T22:32:31+00:00Added an answer on June 7, 2026 at 10:32 pm

    Sure you can :). You can make it shorter too…

    DECLARE @T TABLE(Data VARCHAR(MAX))
    INSERT INTO @T
    SELECT 'SQL' UNION ALL SELECT 'JOB';    
    
    With cte as
    (
        Select Data, Len(Data) DataLength, 1 level
        From @t
        Union All 
        Select Data, DataLength - 1, level + 1
        From cte
        Where DataLength > 1 
    ),
    cte2 as
    (
        Select Data, SUBSTRING(Data, DataLength, 1) DataLetter, level
        From cte
    ),
    cte3 as
    (
        Select Data, 
            (
                SELECT DataLetter + ','
                FROM cte2 c
                Where c.Data = cte2.Data
                Order By level desc
                FOR XML PATH(''), TYPE
    
            ).value('.[1]', 'NVARCHAR(1000)') DataComa
        From cte2
        Group By Data
    )
    Select Data, substring(DataComa, 1, Len(DataComa) - 1) Data2
    From cte3
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Take the tsql query below: DECLARE @table TABLE(data VARCHAR(20)) INSERT INTO @table VALUES ('not
Please have a look at the below SQL code. DECLARE @RET TABLE(OID BIGINT NOT
I have the below Declare @tbl Table(Id int identity, SomeCol varchar(10) not null) Begin
I have a table like below: EmployeeId EmployeeName RequestId RequestName EmployeeId RequestId I need
Environment: SQL Server 2005/2008, pubs database I have inserted into a table variable a
I have a sql function and i need to declare few variables in that
All SQL Servers are SQL Server 2008.... I have a table that is replicated
I have to compare data between two table and check for any conflicts. Below
I've tables and data as following, declare @tApplyProgram table (myID varchar(50), programID varchar(10), stTR
i have the table below <tr id=group_1>...</tr> <tr id=el>...</tr> <tr id=el>...<tr> <tr id=group_2></tr> <tr

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.