Click here to Skip to main content
15,867,750 members
Articles / Database Development / SQL Server / SQL Server 2008

An Easy But Effective Way to Split a String using Transact-SQL

Rate me:
Please Sign up or sign in to vote.
4.90/5 (28 votes)
9 Aug 2009CPOL2 min read 160.1K   421   37   23
This article will demonstrate how to split a string using Transact-SQL.

Figure: Output

Introduction

In this article, I will demonstrate how to split a string using Transact-SQL.

Background

String manipulation is pretty interesting for most software developers. To split a string by using a user defined delimiter is nothing new for programmers. Even Microsoft .NET Frameworks provide us a huge "Standard Techniques" for doing this. But if we want to split a string using Transact -SQL, then how can we achieve this?

Using the Code

It is very simple to use. We just need some basic concepts on the following:

  • CHARINDEX
  • SUBSTRING
CHARINDEX

Returns the starting position of the specified expression in a character string.

Syntax
CHARINDEX ( expression1 , expression2 [ , start_location ] ) 
Arguments

expression1: An expression containing the sequence of characters to be found. expression1 is an expression of the short character data type category.

expression2: An expression, usually a column searched for the specified sequence. expression2 is of the character string data type category.

start_location: The character position to start searching for expression1 in expression2. If start_location is not given, is a negative number, or is zero, the search starts at the beginning of expression2.

Return Types: int

Example
SQL
USE pubs
GO
SELECT CHARINDEX('wonderful', notes)
FROM titles
WHERE title_id = 'TC3218'
GO

More details can be found at this link.

SUBSTRING

Returns part of a character, binary, text, or image expression for more information about the valid Microsoft® SQL Server™ data types that can be used with this function.

Syntax
SUBSTRING ( expression , start , length ) 
Arguments

Expression: A character string, binary string, text, image, a column, or an expression that includes a column. Do not use expressions that include aggregate functions.

Start: An integer that specifies where the SUBSTRING begins.

Length: An integer that specifies the length of the SUBSTRING (the number of characters or bytes to return).

Note: Because start and length specify the number of bytes when SUBSTRING is used on text data, DBCS data, such as Kanji, may result in split characters at the beginning or end of the result. This behavior is consistent with the way in which READTEXT handles DBCS. However, because of the occasional strange result, it is advisable to use ntext instead of text for DBCS characters.

Return Types: Returns character data if expression is one of the supported character data types. Returns binary data if expression is one of the supported binary data types.

Example
SQL
USE pubs
SELECT au_lname, SUBSTRING(au_fname, 1, 1)
FROM authors
ORDER BY au_lname

More details can be found at this link.

I wrote a simple function named SPLITE which will split an expression using CHARINDEX and SUBSTRING functions. A sample code example is given below:

Sample Example

SQL
            set QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author: Md. Marufuzzaman
-- Create date: 
-- Description: Split an expression. 
-- Note: If you are using SQL Server 2000, You need to change the 
-- length (MAX) to your maximum expression length of each datatype.
-- =============================================
/*
SELECT * FROM [dbo].[SPLIT] (';','I love codeProject;!!!;Your development resources')
*/
CREATE FUNCTION [dbo].[SPLIT] 
   (  @DELIMITER VARCHAR(5), 
      @LIST      VARCHAR(MAX) 
   ) 
   RETURNS @TABLEOFVALUES TABLE 
      (  ROWID   SMALLINT IDENTITY(1,1), 
         [VALUE] VARCHAR(MAX) 
      ) 
AS 
   BEGIN
    
      DECLARE @LENSTRING INT 
 
      WHILE LEN( @LIST ) > 0 
         BEGIN 
         
            SELECT @LENSTRING = 
               (CASE CHARINDEX( @DELIMITER, @LIST ) 
                   WHEN 0 THEN LEN( @LIST ) 
                   ELSE ( CHARINDEX( @DELIMITER, @LIST ) -1 )
                END
               ) 
                                
            INSERT INTO @TABLEOFVALUES 
               SELECT SUBSTRING( @LIST, 1, @LENSTRING )
                
            SELECT @LIST = 
               (CASE ( LEN( @LIST ) - @LENSTRING ) 
                   WHEN 0 THEN '' 
                   ELSE RIGHT( @LIST, LEN( @LIST ) - @LENSTRING - 1 ) 
                END
               ) 
         END
          
      RETURN 
      
   END

Note: I have used some other functions like LNE(), LEFT(), etc. which are very common and I hope that everyone is very much familiar with this. Hence, I did not include this. Actually I do not want to lose focus on the main objective of this article.

Conclusion

I hope that this article might be helpful to you. Enjoy!

History

  • 9th August 2009: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions

 
QuestionGood but has a problem with long strings Pin
osperez16-Jun-14 7:03
osperez16-Jun-14 7:03 
AnswerRe: Good but has a problem with long strings Pin
Md. Marufuzzaman7-Aug-14 10:17
professionalMd. Marufuzzaman7-Aug-14 10:17 
GeneralMy vote of 5 Pin
Peaceful Salman20-Nov-13 21:56
Peaceful Salman20-Nov-13 21:56 
GeneralRe: My vote of 5 Pin
Md. Marufuzzaman7-Aug-14 10:18
professionalMd. Marufuzzaman7-Aug-14 10:18 
GeneralMy vote of 1 Pin
Krishnendu Gupta13-Nov-13 22:45
Krishnendu Gupta13-Nov-13 22:45 
GeneralRe: My vote of 1 Pin
Md. Marufuzzaman7-Aug-14 10:23
professionalMd. Marufuzzaman7-Aug-14 10:23 
GeneralMy vote of 5 Pin
om28-Mar-13 6:49
om28-Mar-13 6:49 
GeneralRe: My vote of 5 Pin
Md. Marufuzzaman28-Mar-13 7:53
professionalMd. Marufuzzaman28-Mar-13 7:53 
QuestionA simpler (faster?) Split function using XML Pin
Bamboozled21-Nov-12 10:14
Bamboozled21-Nov-12 10:14 
AnswerRe: A simpler (faster?) Split function using XML Pin
Md. Marufuzzaman23-Nov-12 3:19
professionalMd. Marufuzzaman23-Nov-12 3:19 
Questionarticle: An Easy But Effective Way to Split a String using Transact-SQL Pin
Supriya Srivastav8-Dec-11 18:37
Supriya Srivastav8-Dec-11 18:37 
AnswerRe: article: An Easy But Effective Way to Split a String using Transact-SQL Pin
Md. Marufuzzaman9-Dec-11 4:50
professionalMd. Marufuzzaman9-Dec-11 4:50 
GeneralGood Pin
Shahadat Alam20-Mar-10 20:17
Shahadat Alam20-Mar-10 20:17 
GeneralRe: Good Pin
Md. Marufuzzaman20-Mar-10 20:19
professionalMd. Marufuzzaman20-Mar-10 20:19 
Thanks.
Thanks
Md. Marufuzzaman


I will not say I have failed 1000 times; I will say that I have discovered 1000 ways that can cause failure – Thomas Edison.

GeneralMy vote of 1 Pin
kookai9-Aug-09 15:58
kookai9-Aug-09 15:58 
GeneralRe: My vote of 1 Pin
Md. Marufuzzaman9-Aug-09 16:36
professionalMd. Marufuzzaman9-Aug-09 16:36 
GeneralRe: My vote of 1 Pin
edobrzel10-Aug-09 5:10
edobrzel10-Aug-09 5:10 
GeneralRe: My vote of 1 Pin
Md. Marufuzzaman10-Aug-09 5:28
professionalMd. Marufuzzaman10-Aug-09 5:28 
GeneralRe: My vote of 1 Pin
RugbyLeague25-Apr-12 21:36
RugbyLeague25-Apr-12 21:36 
GeneralRe: My vote of 1 Pin
Erion Pici9-Aug-12 1:14
Erion Pici9-Aug-12 1:14 
GeneralRe: My vote of 1 Pin
RugbyLeague9-Aug-12 1:15
RugbyLeague9-Aug-12 1:15 
GeneralRe: My vote of 1 Pin
Erion Pici9-Aug-12 1:42
Erion Pici9-Aug-12 1:42 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.