Problem
You have a delimited string, and you want to separate it out into individual rowsSolution
connect by regexp_substr('STRING1:STRING2', '[^:]+', 1, level) is not null;
I've highlighted the delimiter, in my case it was a ":".
You wouldn't normally have the values hard-coded, this is just to display the method. You could use this if (for some reason_ you have these value in a table column, or a form field etc.
Comments
Post a Comment