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存储过程的主要内容,如果未能解决你的问题,请参考以下文章