Twenty-five years without you

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

第一步:自定义异常

excp_notexists exception

第二步:捕获异常

begin
                select *** into *** from *** where ***;
               
                exception
                  when no_data_found then
                      raise excp_notexists;
end;

第三步:处理异常

exception
    when excp_notexists then
      -- 处理异常

    when others then

      --处理其它异常

posted on 2013-10-24 17:01  Rumble Zheng  阅读(297)  评论(0编辑  收藏  举报