Oracle
 sql >> Datenbank >  >> RDS >> Oracle

Orakel - kombinatorische String-Permutation

Edit:Habe das generische. Am Ende wirklich einfach (aber ich habe eine Weile gebraucht, um dorthin zu gelangen)

WITH words AS
(   SELECT  REGEXP_SUBSTR( '&txt', '\S+', 1, LEVEL )    AS word
        ,   LEVEL                                       AS num
    FROM    DUAL
    CONNECT BY LEVEL <= LENGTH( REGEXP_REPLACE( '&txt', '\S+\s*', 'X' ) )
)
SELECT  SYS_CONNECT_BY_PATH( W.word, ' ' )
FROM    words   W
CONNECT BY NOCYCLE PRIOR W.num != W.num

Edit2:Redundantes Maxnum-Zeug entfernt. Überbleibsel von früheren Versuchen