I have a result set from SELECT Statement, how can i split one column without any delimiter this is my result
Size TCount TDevice
 2     5      E01
 4.5   3      W02E01
I want to have this
Size TCount  TDevice
 2      5     E
 2      5     0
 2      5     1
4.5     3     W
4.5     6     0      (we have 2 times of 0)
4.5     3     2
4.5     3     1    
thank you
 
     
     
     
    