1、v_dummy := 0;
begin
select 1 into v_dummy from dual where 1=2;
exception when no_data_found
null;
end; 如果还和其他语句放在一起。 最好将该SQL语句独立作成块。
2、用select max(colname)或者select min(colname) 来解决。
begin
select 1 into v_dummy from dual where 1=2;
exception when no_data_found
null;
end; 如果还和其他语句放在一起。 最好将该SQL语句独立作成块。
2、用select max(colname)或者select min(colname) 来解决。