| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
|  |  | |||
Home -> Community -> Usenet -> c.d.o.misc -> Re: NewLine with SQL
DBA Casino Monté-Carlo wrote:
> Hi,
> 
> Someone could tel me how can i do to insert a NewLine Character in a :
> 
> select "myString," || NewLine || myString2 from toto;
> 
> result is : myString,
>               myString2
> 
> Thank's
> 
> 
> 
select "mystring,"||chr(10)||chr(12)||'mystring2' from toto;
Received on Wed Oct 03 2001 - 15:53:58 CDT
|  |  |