Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Updating a column with PL/SQL proc
> 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
![]() |
![]() |