set serveroutput on;
declare
temp_id applicant.id%type;
cursor c1 is select id from applicant where father like 'xyz';
begin
if not c1%isopen then open c1;
end if;
loop
fetch c1 into temp_id;
dbms_output.put_line(temp_id);
exit when c1%notfound;
end loop;
close c1;
end;
/
私はid列を持つ表の申請者を持っています。カーソルは何もフェッチしないと思います。手順は正常に完了しますが。where Father like 'xyz' 条件にエラーはありますか?