Oracle
 sql >> Base de Dados >  >> RDS >> Oracle

Converter cada caractere em uma string em uma linha

with temp as (select '12456' as str from dual)
select substr(str,level,1)
from temp
connect by level <= length(str);

Resultado:
1
2
4
5
6