Du behöver inte PL/SQL för att generera en alfabetisk sekvens. Du kan göra det i ren SQL med Row Generator metod.
WITH combinations AS
(SELECT chr( ascii('A')+level-1 ) c FROM dual CONNECT BY level <= 26
)
SELECT * FROM combinations
UNION ALL
SELECT c1.c || c2.c FROM combinations c1, combinations c2
UNION ALL
SELECT c1.c
|| c2.c
|| c3.c
FROM combinations c1,
combinations c2,
combinations c3
/
Ovanstående skulle ge dig alla möjliga kombinationer c1
, c2
, c3
för enstaka och två tecken. För fler kombinationer kan du bara lägga till kombinationer som c4
, c5
etc.