欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

数据库-存储过程

程序员文章站 2022-06-02 08:21:47
...

–存储过程:实际上是封装在服务器的一段plsql代码片段,已经编译好了的代码
客户端去调用存储过程,执行效率会很高
语法:
create [or replace] procedure 存储过程名称 (参数名 in|out 参数类型,…)
is | as
–声明部分
begin
–处理逻辑
end;

–例:给指定员工涨薪,并打印涨薪前后工资
–处理逻辑
参数: in 员工编号
参数: in 需要涨多少工资

	查询当前工资
	打印涨薪前工资
	更新工资
	打印涨薪后工资

create or replace procedure pro_update_sal(oepno in number, num in number)
is
–声明变量记录当前工资
old_sal number;
begin
–查询当前工资
select sal into old_sal from emp where empno = oepno;
–输出当前工资
dbm_output.put_line('涨薪前工资: ’ || old_sal);
–更新工资
update emp set sal = sal + num where empno = oepno;
–输出涨薪后工资
dbm_output.put_line('涨薪后工资: ’ || old_sal + num);
commit;
end;

–调用方式
–方式1
call pro_update_sal(8888, 999);

--方式2
	declare

	begin
		pro_update_sal(8888. 999);
	end;