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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T03:47:14+00:00 2026-05-16T03:47:14+00:00

Using SQL Server 2008, I am trying to do something similar to this post

  • 0

Using SQL Server 2008, I am trying to do something similar to this post regarding splitting a concatenated field into separate parts for normalization purposes.

The problem with the solutions in the linked post is that they only work for delimited values.

The data I am attempting to split would be similar to:

UserID — ConcatField
1 — ABC
2 — DEF

I would want the output to be like:

UserID — ConcatField
1 — A
1 — B
1 — C
2 — D
2 — E
2 — F

Is there a function to split out these values without the use of a delimiter?

  • 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-16T03:47:15+00:00Added an answer on May 16, 2026 at 3:47 am

    Is this what you mean?

    WITH X AS
    (
    SELECT 1 AS UserID,'ABC' AS ConcatField UNION ALL
    SELECT 2 AS UserID,'DEF' AS ConcatField
    ), N AS
         (SELECT 1 i
         UNION ALL
         SELECT i+1
         FROM   N
         WHERE  i<1000 /*Or whatever your max string length is*/
         )
    
    SELECT UserID,SUBSTRING(ConcatField,i,1) as ConcatField
     INTO #NewTemporaryTable
     FROM X JOIN N  ON I<= LEN(ConcatField)
    OPTION(MAXRECURSION 0)
    

    Gives

    UserID      ConcatField
    ----------- -----------
    1           A
    1           B
    1           C
    2           D
    2           E
    2           F
    

    Edit: Though as Jeff Moden points out in the comments the performance of recursive CTEs is far from great so you would be best off creating a permanent numbers table using one of the techniques from here and then using

    SELECT  UserID ,
            SUBSTRING(ConcatField, i, 1) AS ConcatField
    INTO    #NewTemporaryTable
    FROM    YourTable
            JOIN Numbers ON Number <= LEN(ConcatField)
    
    • 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 (non-R2) and trying to use Report Builder 3.0. When
I am using SQL Server 2008 developer edition. I was trying to attach the
I am using SQL Server 2008 & 2005 (Express). I'm trying to extract part
using Visual.Web.Developer.2010.Express; using SQL.Server.Management.Studio.2008.R2; What I'm ultimately trying to do is update a sql
I've just installed SQL Server 2008 Developer edition and I'm trying to connect using
I'm trying to export records from SQL Server 2008 to mdb file using OpenDataSource.
I am trying to create an add-in by using the article below http://blogs.microsoft.co.il/blogs/shair/archive/2008/07/28/how-to-create-sql-server-management-studio-addin.aspx I
I am using SQL Server 2008. I am trying to do some basic math
I am trying to write an aggregate udf for using Sql Server 2008 and
Using SQL Server 2008 Reporting services: I'm trying to write a report that displays

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.