For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!
Hi
I have a string like '987612345' and would like show each number in different rows
9
8
7
6
1
2
3
4
5
I tried code below
select substr('987612345', level,1) column01 from DUAL connect by level <10
select substr('987612345', level,1) column01 from DUAL
connect by level <10
Is there any better way to do this?