-4

喜欢:

一个

C

D

F

G

H

Ĵ

ķ

大号

ñ

R

小号

ü

W

X

Z

4

1 回答 1

2

Here is one way:

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

(Where the ... is just similar lines for the other letters).

Seems like a curious question, though.


DECLARE a number;

BEGIN

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

   dbms_output.put_line(chr(a));

END LOOP; END;

by Sai Prasanth

于 2013-06-09T18:28:20.063 回答