次のような方法で試すことができます:
select level, substr('Stefano', level, 1) /* a substring starting from level-th character, 1 character log */ from dual connect by level <= length('Stefano') /* the same number of rows than the length of the string */
プレ>これにより、開始文字列の各文字に対して 1 つの行が作成されます。ここで、N 番目の行には、
substr
によって抽出された N 番目の文字が含まれます。 .