游标pls-00324

14289/15 PL/SQL: Statement ignored
14289/18 PLS-00324: cursor attribute may not be applied to non-cursor

open cur_…
loop
fetch cur_… into v_…
if v_…%found – 该行触发
end if;
end loop;
close cur_…

解决的方式是,将结果值细粒度接收,即直接定义多个字段类型的变量接收。
判断的地方修改为了
exit when cur_…%notfound

即用cursor做反向判断

暂时不知道原来的语法有什么问题。

你可能感兴趣的:(开发语言)