Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: ESCAPE SYMBOL
On Mon, 26 Jul 1999 18:35:33 +0200, "Diego Peroni" <peroni_at_cefriel.it> wrote:
>Anyone knows how is possible to run a correct INSERT like this?
>
>INSERT INTO workspacename.tablename VALUES (
>'D'Amico Andrea'
>);
try:
INSERT INTO workspacename.tablename
VALUES ( 'D''Amico Andrea' );
chris.
>
>When I put special symbol like this: ' Oracle thinks that the string is
>finish and do not process the statement!
>
>Thanks
>Diego Peroni
>
>
--
Christopher Beck
Oracle Corporation
clbeck_at_us.oracle.com
Reston, VA.
![]() |
![]() |