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 t
You haven't said if you want the items in columns or rows. The row solution is quite easy using xml: http://pbarut.blogspot.com/2006/10/binding-list-variable.html
Basically you convert the string into an xml document then you pull the values out.