Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a SQL Table like this:

| SomeID         | OtherID     | Data
+----------------+-------------+-------------------
| abcdef-.....   | cdef123-... | 18,20,22
| abcdef-.....   | 4554a24-... | 17,19
| 987654-.....   | 12324a2-... | 13,19,20

is there a query where I can perform a query like SELECT OtherID, SplitData WHERE SomeID = 'abcdef-.......' that returns individual rows, like this:

| OtherID     | SplitData
+-------------+-------------------
| cdef123-... | 18
| cdef123-... | 20
| cdef123-... | 22
| 4554a24-... | 17
| 4554a24-... | 19

Basically split my data at the comma into individual rows?

I am aware that storing a comma-separated string into a relational database sounds dumb, but the normal use case in the consumer application makes that really helpful.

I don't want to do the split in the application as I need paging, so I wanted to explore options before refactoring the whole app.

It's SQL Server 2008 (non-R2).

share|improve this question

6 Answers

up vote 17 down vote accepted

You can use the wonderful recursive functions from SQL Server

Sample table

create table Testdata(SomeID int, OtherID int, Data varchar(max))
insert Testdata select 1, 9, '18,20,22'
insert Testdata select 2, 8, '17,19'
insert Testdata select 3, 7, '13,19,20'
insert Testdata select 4, 6, ''

The query

;with tmp(SomeID, OtherID, DataItem, Data) as (
select SomeID, OtherID, LEFT(Data, CHARINDEX(',',Data+',')-1),
    STUFF(Data, 1, CHARINDEX(',',Data+','), '')
from Testdata
union all
select SomeID, OtherID, LEFT(Data, CHARINDEX(',',Data+',')-1),
    STUFF(Data, 1, CHARINDEX(',',Data+','), '')
from tmp
where Data > ''
)
select SomeID, OtherID, DataItem
from tmp
order by SomeID

Output

SomeID  OtherID  DataItem
1   9   18
1   9   20
1   9   22
2   8   17
2   8   19
3   7   13
3   7   19
3   7   20
4   6   
share|improve this answer
+1 That is my answer but with query itself as well! – Aliostad Mar 30 '11 at 23:20
The code doesn't work if change the data type of the column Data from varchar(max) to varchar(4000), e.g. create table Testdata(SomeID int, OtherID int, Data varchar(4000))? – NickW Feb 21 '12 at 23:58
2  
@NickW this may be because the parts before and after UNION ALL return different types from the LEFT function. Personally I don't see why you wouldn't jump to MAX once you get to 4000... – RichardTheKiwi Feb 22 '12 at 8:35

Use this to split your values and join against the returned table

http://madprops.org/blog/splitting-text-into-words-in-sql-revisited/

share|improve this answer

OK, I have got a solution which is pure T-SQL but probably not efficient, yet does the job.

I have not written the query yet but writing it would not be tough (and I will have a go and try updating my answer). Here it is:

Let's say there are up to 5 values (separated by commas) that can be in each column. Then we need to UNION queries that select OtherID and firstValue, OtherID and secondValue, OtherID and third value, ... The SELECT would not bring back the row if there is no such value in the row.

share|improve this answer
;WITH tmp(SomeID, OtherID, DataItem, Data) as (
    SELECT SomeID, OtherID, LEFT(Data, CHARINDEX(',',Data+',')-1),
        STUFF(Data, 1, CHARINDEX(',',Data+','), '')
FROM Testdata
WHERE Data > ''
)
SELECT SomeID, OtherID, Data
FROM tmp
ORDER BY SomeID

with only tiny little modification to above query...

share|improve this answer
2  
Can you briefly explain how this is an improvement over the version in the accepted answer? – Leigh Jul 28 '12 at 20:50

Check this

 SELECT A.OtherID,  
     Split.a.value('.', 'VARCHAR(100)') AS Data  
 FROM  
 (
     SELECT OtherID,  
         CAST ('<M>' + REPLACE(Data, ',', '</M><M>') + '</M>' AS XML) AS Data  
     FROM  Table1
 ) AS A CROSS APPLY Data.nodes ('/M') AS Split(a); 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.