码迷,mamicode.com
首页 > 数据库 > 详细

Oracle的存储过程基本写法

时间:2020-04-21 15:35:09      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:from   html   log   param   post   https   nbsp   判断   htm   

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的存储过程基本写法

标签:from   html   log   param   post   https   nbsp   判断   htm   

原文地址:https://www.cnblogs.com/mrlee623/p/12744401.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!