declare @str nvarchar(100)
set @str='a,b,c,d,e,f'
declare @start int
declare @v nvarchar(100)
declare @i int
select @i=len(@str)
while  @i>0
    begin
    select @start=charindex(',',@str)
    -- print @start
    select @v=substring(@str,0,@start)
    print @v
    select @str=substring(@str,@start+1,len(@str))
    select @i=charindex(',',@str)
   end  
if @i=0
     print @str