Oracle PL/SQL代码:
declare
N integer not null := 0;
null_variable exception;
begin
select col1 into N from T;
if N is null then
raise null_variable;
end if;
exception
when null_variable then
dbms_output.put_line('Null variable detected');
end;
对于DB2无法创建。
1条答案
按热度按时间dddzy1tm1#
将以下内容放入文件
q1.sql
:运行它:
如果要使用异常处理程序,则:
如需详细信息,请参阅复合SQL(已编译)陈述式主题。