I am having single comma separated row of column as mentioned below and I need to split it into multiple rows if it exceeds the specified length
+-------------------+--------------------------------+-----------------+
ID Name Length_Name
+-------------------+--------------------------------+-----------------+
1 David,John,James,Mary,Bryan 27
2 Mike,Boucher,Pollard 20
+-------------------+--------------------------------+-----------------+
Here suppose the Name column value's crosses the length of 12 it needs to mention like as below
+-------------------+--------------------------------+-----------------+
ID Name Length_Name
+-------------------+--------------------------------+-----------------+
1 David,John 10
1 James,Mary 10
1 Bryan 5
2 Mike,Boucher 12
2 Pollard 7
--------------------+--------------------------------+-----------------+
Please, if anyone knows solution, kindly comment it.