I have values in CSV format in a column of a table. One set of values could look like this:
44,27,68,57,(...),77
I want to create a query statement in Oracle SQL that returns this columns values like this (with each separated value being its own row):
44
--
27
--
(...)
--
77
How would I achieve this?