加入收藏 | 设为首页 | 会员中心 | 我要投稿 我爱故事小小网_铜陵站长网 (http://www.0562zz.com/)- 视频终端、云渲染、应用安全、数据安全、安全管理!
当前位置: 首页 > 百科 > 正文

oracle plsql 异常

发布时间:2021-02-26 09:27:21 所属栏目:百科 来源:网络整理
导读:set serveroutput onDECLAREpename emp.ename%type;beginselect ename into pename from emp where ename=‘1213‘;exceptionwhenno_data_found then dbms_output.put_line(‘没有该数据‘);whenothers 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
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;

(编辑:我爱故事小小网_铜陵站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    热点阅读