oracle存储过程

Posted 虚极静笃

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle存储过程相关的知识,希望对你有一定的参考价值。

 create or replace procedure RaiseSalry(eno in number)
as
psal emp.sal%type;
begin
select sal into psal from emp where EMPNO=eno;
update emp set sal = sal +100 where EMPNO=eno;
DBMS_OUTPUT.PUT_LINE(\'涨工资前的薪水\'||psal||\'涨工资后的薪水\'||(psal+100));
end;

以上是关于oracle存储过程的主要内容,如果未能解决你的问题,请参考以下文章

oracle存储过程基本语法

oracle 存储过程中调用存储过程

oracle 如何终止存储过程的运行!

请问oracle怎么执行存储过程

oracle中的存储过程怎么写

oracle存储过程中循环调用存储过程