存储过程入门例子
Posted 夏蝉冬雪
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了存储过程入门例子相关的知识,希望对你有一定的参考价值。
创建存储过程:
create or replace procedure test (
p1 in out number,p2 in number,r1 out number,r2 out number) as
begin
r1 := p1 + p2;
r2 := p1 - p2;
p1 := 888;
end test;
执行:
declare
p1 number(3) :=10;
begin
test(p1,p1,p1,p1);
dbms_output.put_line(‘a + b = ‘ || p1);
end;
以上是关于存储过程入门例子的主要内容,如果未能解决你的问题,请参考以下文章