在我的oracle apex应用程序中有两个表,例如tbl1& TBL2。我在tbl1上有一份报告和表格。在那个表单中,我想要一个将指定行复制到tbl2的按钮。 任何想法,我对oracle应用程序都是新手。
答案 0 :(得分:0)
PL/SQL
Process point
- After submit
,Conditions
- 选择按钮在流程来源:
begin
insert into tbl2
select * from tbl1
where <your conditions>;
end;