Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: tab ascii value
> -----Original Message-----
> From: Tatireddy, Shrinivas (MED, Keane)
> [mailto:Shrinivas.Tatireddy_at_med.ge.com]
>
> how to find out the ascii value of tab, new line
>
> for new line it is 10
> for tab it is 9
>
> but how to get from the following statement.
>
> select ascii(??????) from dual;
I don't remember if this has been answered already, but read the documentation on the DUMP and CHR functions.
SQL> select dump ('A') from dual ;
DUMP('A')
SQL> select chr (65) from dual ;
C
-
A
Received on Tue Aug 28 2001 - 13:02:01 CDT
![]() |
![]() |