Oracle数据库Bug:使用call调用存储过程no_data_found错误不会报错?

43 阅读1分钟

直接上个验证代码

create or replace procedure sp_test
is
  v_count number;
begin
  select 1 
    into v_count
    from dual
   where 1 != 1;
end;
call sp_test();