• this gives you the charindex of comma 1 and comma 2

    select charindex (',',col) as comma1,charindex(',',SUBSTRING(col,charindex(',',col)+1,99))+charindex (',',col) as comma2

    from #t1

    ***The first step is always the hardest *******