저장 과정 중의 입력과 출력

758 단어 저장 프로세스
저장 과정 중의 입력과 출력
create or replace procedure sp_test 
as
cursor c_group
is
select ename from emptestwhere sal > 2000 group by job;
begin
for r_group in c_group
loop
update emptest set comm = comm+3000;
end loop;
end;

create or replace procedure sp_findname 
(i_ename in varchar2,
o_sal out number)
as
begin
select sal into o_sal from emptest
where ename = i_ename;
exception
when others
then 
dbms_output.put_line('error');
end;

declare
v_sal emptest.sal%type;
begin
sp_findname('STAR',v_sal);
dbms_output.put_line('v_sal is'||v_sal);
end;

좋은 웹페이지 즐겨찾기