Du behöver ingen DISTINCT
för att få ditt resultat; dessutom, för att få resultatet i en given ordning behöver du bara en ORDER BY
klausul:
select trim(regexp_substr('bbb;aaa;qqq;ccc','[^;]+', 1,level) ) as q
from dual
connect by regexp_substr('bbb;aaa;qqq;ccc', '[^;]+', 1, level) is not null
order by level