Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: PL/SQL - string
Nandakumar wrote:
> Hi
>
> The following statement is giving compile error in PL/SQL block.
>
> str := 'string1 \
> string2' ;
>
> Can't we break a string to give a better look to code?
str := 'string1'||
'string2'; Received on Mon Aug 02 1999 - 06:50:00 CDT
![]() |
![]() |