我们都知道可以通过EXCEPTION可以捕获异常,而RAISE是用来抛出异常的,如下:
begin
declaremyexception exception; --定义异常
l_sum number;
begin
select count(*) into l_sum from t;
if l_sum >0 then
raise myexception; --抛出异常
end if;
exception
when myexception
then dbms_output.put_line('表T中的记录大于0');
end;
exception
when others
then
dbms_output.put_line(sqlcode||sqlerrm);
end;
/