SELECT REGEXP_SUBSTR('123:345:432', '[^:]+', 1, rownum)
  from dual
connect by rownum <= REGEXP_COUNT('123:345:432', ':') + 1;

  • No labels