Tagged Questions
2
votes
4answers
70 views
Oracle: using IN clause with text field?
I have some legacy data where there's a VARCHAR2(100) field SUBID that has comma-delimited data:
empno subid
1 1, 3, 2
2 18,19, 3, 6, 9
etc.
I need to write the equivalent of
select ...
1
vote
5answers
3k views
Does PL/SQL have an equivalent StringTokenizer to Java's?
I use java.util.StringTokenizer for simple parsing of delimited strings in java. I have a need for the same type of mechanism in pl/sql. I could write it, but if it already exists, I would prefer to ...