- 存储过程语法
create or replace procedure procedure_name( param1 in type , param2 out type) is
Begin
null; /...
End;
语法:本语句用来创建或替换存储过程 procedure_name,如果没有就创建;如果存在就覆盖它。
参数不带取值范围,in标示输入,out 表示输出,type表示参数类型。
is标示后边将跟随一个pl/sql体。
Begin ... End就是pl/sql体,Begin表示pl/sql体的开始,End表示pl/sql体的结束。特别需要说明的是,pl/sql体中至少要有一句执行语句,如果没有执行的程序,可用null代替。
create or replace procedure procedure_name( param1 in type , param2 out type)
as
var_name1 type(length);
var_name2 type(length);
...
Begin
null; /...
End;
语法:同上。
as表示该存储过程中含有变量,并且为变量指定变量类型和取值范围。特别需要说明的是,该变量只在该存储过程中有效。