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

oracle plsql 异常

时间:2019-06-07 13:12:55      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:nbsp   The   bsp   into   except   other   ide   error   int   

set serveroutput on

DECLARE
pename emp.ename%type;
begin
select ename into pename from emp where ename=1213;
exception
when
no_data_found then     dbms_output.put_line(没有该数据);
when
others then  dbms_output.put_line(其他exception);
end;
set serveroutput on

DECLARE
pename emp.ename%type;
begin
select ename into pename from emp where ename=1213;
exception
when
no_data_found then     dbms_output.put_line(没有该数据);
when
others then  dbms_output.put_line(其他exception);
end;

 

set serveroutput on

DECLARE
pnum number;
begin
pnum:=1/0;
exception
when
zero_divide then     dbms_output.put_line(0不能做除数);
when
others then  dbms_output.put_line(其他exception);
end;
set serveroutput on

DECLARE
pnum number;
begin
pnum:=abc;
exception
when
value_error then     dbms_output.put_line(value_erroe);
when
others then  dbms_output.put_line(其他exception);
end;

 

oracle plsql 异常

标签:nbsp   The   bsp   into   except   other   ide   error   int   

原文地址:https://www.cnblogs.com/wangchuanfu/p/10987928.html

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