假设一个名为的游标cur(param_1 number,param_2 varchar2)
返回三个值,如下所示
地名值 pl1芒果好 pl2葡萄不好 pl3苹果好 pl4橘色很好
如何从该光标中单独获取每个值并执行操作,就像我想要获取pl1
并执行此操作一样
for y in cur1(param_1,param_2) loop
if y.place='pl1' then
do this
elsif y.place='pl2' then
do this
else
do this.
end if;
在我的程序中出现错误说
错误:'pls-00364:循环索引变量'y'使用无效'。
有什么建议吗?