Oracle的存储过程基本写法
Posted mrlee623
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Oracle的存储过程基本写法相关的知识,希望对你有一定的参考价值。
create [or replace] procedure 存储过程名(param1 in type,param2 out type)
as
变量1 类型(值范围);
变量2 类型(值范围);
begin
select count(*) into 变量1 from 表A where列名=param1;
if (判断条件) then
select 列名 into 变量2 from 表A where列名=param1;
dbms_output.Put_line(‘打印信息‘);
elsif (判断条件) then
dbms_output.Put_line(‘打印信息‘);
else
raise 异常名(NO_DATA_FOUND);
end if;
exception
when others then
rollback;
end;
以上是关于Oracle的存储过程基本写法的主要内容,如果未能解决你的问题,请参考以下文章