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

Oracle 存储过程起步

时间:2018-10-15 01:16:10      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:技术分享   bubuko   删除   when   except   image   span   exce   create   

 

 

 

 存储过程的注释不能写在第一行

select后面要有into

create or replace procedure DelEmp(v_empno in emp.empno%type) AS
No_result EXCEPTION;
salary varchar2(40);--nod 18-10-14
begin
delete from emp where empno=v_empno;
 select sum(sal) into salary from emp group by ename;
if sql%NOTFOUND THEN
    RAISE No_result;
    end if;
    DBMS_OUTPUT.PUT_LINE(编码为||v_empno||已删除!!!);
    COMMIT;
exception
     when No_result then
     DBMS_OUTPUT.PUT_LINE(你要的数据不存在,请确认是否为||v_empno);
     WHEN others then
     DBMS_OUTPUT.PUT_LINE(其他错误,请确认输入);
END DelEmp;

 

 

 

技术分享图片

 

Oracle 存储过程起步

标签:技术分享   bubuko   删除   when   except   image   span   exce   create   

原文地址:https://www.cnblogs.com/nodchen/p/9788905.html

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