MS SQL Server :: Splitting Out Names From One Field Delimted By Comma And A Space

MS SQL Server :: Splitting Out Names From One Field Delimted By Comma And A Space

瀏覽:443
日期:2025-06-11
Splitting A Comma Delimited String I have a string like say: '3:4:5:4,2:4:1,4:1:2:5:2'. Now I need to split the substrings delimited by commas. So my final output shall be 3:4:5:4 2:4:1 4:1:2:5:2 I did write a piece of code to achieve the same, but I feel...看更多