table A:
col1
_______________________
jack
1200
20
peter
2000
10
robert
300
30
至
table B :
name sal deptno
-----------------------
jack 1200 20
peter 2000 10
robert 300 30
在这里,我希望通过使用过程参数来实现。你能帮我尝试一下,但它给出了错误。
create procedure GetDatafromtable_A(V_1 in varchar2)
as
CURSOR rwdatacursor IS select Raw_Data from table_a where rowid<=3)
T_record rwdatacursor%rowtype;
begin
open rwdatacursor;
loop
fetech rwdatacursor into T_record;
exit when rwdatacursor%NOTFUND;
insert into temp_process;
end loop
close rwdatacursor;
end;
这是我尝试过但显示很多错误的代码