Click here to Skip to main content
15,878,959 members
Articles / Database Development / SQL Server

How to split the values in sqlserver 2008

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
3 Oct 2012CPOL 0  
Function @listString VARCHAR(8000), @Delimeter char(1)RETURNS @ValueTable table ( Value VARCHAR(8000)) ASBEGIN DECLARE @NextString VARCHAR(8000) DECLARE @Pos INT DECLARE @NextPos INT DECLARE @String VARCHAR(8000) DECLARE @Delim VARCHAR(1) SET @NextString...

Revisions


  

Compare Revision Minor Date Status Editor
2 - publicly available No 3-Oct-12 0:22 Available AshishChaudha
Updates in content.
1 No 2-Oct-12 19:42 Available SruthiR

License

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


Written By
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions