-4

お気に入り:

B

D

G

H

J

K

L

M

N

P

Q

R

S

T

W

バツ

Z

4

1 に答える 1

2

1 つの方法を次に示します。

select 'A' as letter from dual union all
select 'B' from dual union all
. . . 
select 'Z'
order by letter

(...他の文字と同様の行です)。

しかし、奇妙な質問のように思えます。


数値を宣言します。

始める

FOR a in ascii('A') .. ascii('Z') LOOP

   dbms_output.put_line(chr(a));

エンドループ; 終わり;

サイ・プラサント

于 2013-06-09T18:28:20.063 に答える