如何使用查询访问同一过程中的过程参数
,例如:请参阅此过程
procedure game(left in tab.left%type,right in tab.right%type,...)
is
--some local variables
begin
merge into tgt_table
using subquery --(here is what i need to use the parameters)
on some condition
when matched then
update the tgt table
when not matched then
insert the table;
end game;
在上述过程和合并语句中,我需要一个查询,以便它使用参数值作为表引用,并根据给定的条件使用这些值更新或插入到表中。
请帮帮我。提前致谢