Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Stored Proc w/Multiple Result Sets?
Hi:
In a PL/SQL block in oracle you have to select values into variables. In
your case you should declare variables for the fields with datatypes
matching with the datatypes of selected fields.
Then with the help of an into clause select the valuse of the fields into
the corresponding variables.
eg.
Create or replace procedure pro1 (Arg1, Arg2)
as
Var1 %type Var2 %type Var3 %type Var4 %type
Rajesh Received on Wed Sep 17 1997 - 00:00:00 CDT
![]() |
![]() |