I have a table with one column comma delimited like:
Col1 Col2
Row1 1 1,2,3,4
Row2 2 5,6,7,8
I would like to split the rows by inserting the records into additional columns in @table and have:
Col1 Col2 Col3 Col4 Col5
Row1 1 1 2 3 4
Row2 2 5 6 7 8
Please assist.