Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: Updating a column with PL/SQL proc

Re: Updating a column with PL/SQL proc

From: andrija <ar35644_at_fer.hr>
Date: Fri, 14 Dec 2001 11:32:49 +0100
Message-ID: <9vckgu$he9$1@as201.hinet.hr>


> begin
>
> execute immediate 'update test_plup set ' || clname || ' = :val1'
> using val1;
>
> end;
>

What's the difference between

execute immediate 'update test_plup set ' || clname || ' = :val1' using val1;

and

execute immediate 'update test_plup set ' || clname || ' = ' || val1; Received on Fri Dec 14 2001 - 04:32:49 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US