Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Insert character codes in Oracle with SQL command
Use the chr() function. chr(97) || chr(98) || chr(99) ('abc'). You'll
have to do the hexadecimal conversion yourself. :)
Richard
Sanjin wrote:
>
> Hi,
>
> Is it possible to insert character/s based on their character codes into
> Oracle database (8.0.5) with some SQL command?
>
> i.e. INSERT INTO target_table VALUES 0x61 0x62 0x63 (values of characters
> codes, not characters i.e. 'abc').
>
> Thanks in advance
>
> Sanjin
Received on Thu Dec 13 2001 - 13:10:16 CST
![]() |
![]() |