Oracle
 sql >> Base de Dados >  >> RDS >> Oracle

%NOTFOUND pode retornar nulo após uma busca?


Posso encontrar uma situação em que uma busca pode falhar:
declare
  i integer;
  cursor c is
    select 1 / 0 from dual;
begin
  open c;

  begin
    fetch c
      into i;
  exception
    when others then
      dbms_output.put_line('ex');
  end;

  if c%notfound is null then
    dbms_output.put_line('null');
  elsif c%notfound then
    dbms_output.put_line('true');
  else
    dbms_output.put_line('false');
  end if;
  close c;

end;

Mas isso só torna sua pergunta mais forte, pois ela será avaliada como nula, nem em 10g nem em 11g...