本文主要是介绍Oracle 预定义异常标识符,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
-- 预定义异常标识符
例:
declare
v_name tg_test_user.tg_test_username%type;
begin
select tg_test_username into v_name from tg_test_user where tg_test_userid=3;
dbms_output.put_line('用户名:'||v_name);
exception
when no_data_found then -- 当执行查询语句未返回行触发
dbms_output.put_line('该用户不存在');
end;
这篇关于Oracle 预定义异常标识符的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!