I have a column with comma separated values like 6,7,99.3334.
6,7,99.3334
I need write a PL SQL procedure that will give me these values separately. The Length of the column is 40.
Can anyone help me with this?
Something like this maybe?
with my as ( select '6,7,99.3334' str from dual ) select regexp_substr(my.str,'[^,]+',1,level) part from my connect by level <= length(regexp_replace(my.str,'[^,]+')) + 1 ;
1.4m articles
1.4m replys
5 comments
57.0k users