我正在oracle中准备一个存储过程。在这个过程中,我有一个 select 语句,它将导致多行。现在我想将这些行插入到另一个表中。
请有人告诉我这真的很紧急。
更新:
我忘记提及的一件事是,我还必须在我的 select 语句结果中添加另一列。此列将包含此存储过程中的参数值。
以下是此示例存储过程
Create or Replace PROCEDURE "My Procedure"
(
my_id in number,
nric in VARCHAR2
)
BEGIN
insert into new_table(my_new_id,field1, field2)
select my_id,table1.field1, table2.field2
from table1, table2
where table1.age=table2.age AND table1.my_nric=nric;
END
在上面的示例中,我在过程参数中有 my_id,并且希望将它插入到 new_table 中,用于 table1 和 table2 中的每个结果条目。