I have so many long database so I used seq_no in commas separate using more than one sequence store in single column but now I want all sequence in a single column so I am confused how to create this sql result for this. 
For example:
TABLE STRUCTURE SR_NO IS INT , SEQ_NO IS VARCHAR(MAX)
SR_NO   SEQ_NO
---------------------------------    
  1     1839073,
  2     1850097,1850098,
  3     1850099,1850100,1850110    
I need to get this result:
SEQ_NO 
--------------
1839073
1850097
1850098
1850099
1850100
1850110 
Thanks!
 
     
     
     
     
    