欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

plsq程序设计--异常处理

程序员文章站 2022-03-03 23:52:25
...
[color=red][b]异常内容写在exception块中[/b][/color]
declare
v_temp number(4);
begin
select empno into v_temp from emp where deptno = 10;
exception
when too_many_rows then
dbms_output.put_line('返回记录数不唯一');
when others then
dbms_output.put_line('产生异常');
end;


其它常见异常类型:
no_data_found:未找到数据

其他异常就查手册吧,我基本不用……
相关标签: SQL