17,140
社区成员




create or replace procedure p_update_project(i_proid in varchar2,
i_col1 in varchar2,
i_col2 in varchar2) as
begin
update project_info
set col1 = i_col1, col2 = i_col2
where proid = i_proid;
commit;
exception
when others then
dbms_output.put_line(sqlerrm);
end;