RosettaCodeData/Task/Generate-lower-case-ASCII-alphabet/PL-SQL/generate-lower-case-ascii-alphabet.sql
2023-07-01 13:44:08 -04:00

12 lines
258 B
SQL

Declare
sbAlphabet varchar2(100);
Begin
For nuI in 97..122 loop
if sbAlphabet is null then
sbAlphabet:=chr(nuI);
Else
sbAlphabet:=sbAlphabet||','||chr(nuI);
End if;
End loop;
Dbms_Output.Put_Line(sbAlphabet);
End;