I'm looking to split '1,2,3,4,5,6,7,8,9,10,11,12,13,14,15...' (comma delimited) into a Table or Table Variable. Does anyone have a Function that returns each one in a row?
I am using SQL Server 2008.
Thanks.
|
2
|
I'm looking to split '1,2,3,4,5,6,7,8,9,10,11,12,13,14,15...' (comma delimited) into a Table or Table Variable. Does anyone have a Function that returns each one in a row? I am using SQL Server 2008. Thanks.
|
||
|
|
|
|
Erland Sommarskog has maintained the authoritative answer to this question for the last 12 years: http://www.sommarskog.se/arrays-in-sql.html It's not worth reproducing all of the options here on StackOverflow, just visit his page and you will learn all you ever wanted to know. |
||
|
|
|
|
Try this
OR
Many more ways of doing the same is here How to split comma delimited string? |
||
|
|
|
|
Hi, I am tempted to squeeze in my favourite solution. The resulting table will consist of 2 columns: PosIdx for position of the found integer; and Value in integer.
It works by using recursive CTE as the list of positions, from 1 to 100 by default. If you need to work with string longer than 100, simply call this function using 'option (maxrecursion 4000)' like the following:
|
|||
|
|
|
|
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=50648 A selection of different methods |
||
|
|
|
|
Here is somewhat old-fashioned solution:
In SQL Server 2008 you can achieve the same with .NET code. Maybe it would work faster, but definitely this approach is easier to manage. |
||||
|