Hi Experts,
i am having the string contains the comma separated values as shown in below .
Declare @string NVARCHAR(4000)='a,b,c,.....';
here we may have n number of values with comma separated.
My desired out put is that i need to convert each value in the comma separated string to the single column value as shown in pic.
How can i achieve this in sql server by using T-SQL.
Thanks in Advance,
Ramesh Reddy .