[求助]oracle下怎么创建游标
可不可以给我例子看看,谢谢!!!!!!!1
--补充REF游标
--显示游标
declare
vsal emp.sal%type;
type x is ref cursor;
xA x;
begin
open xA for 'select sal from emp where deptno=20';
loop
fetch xA into vsal;
exit when xA%notfound;
dbms_output.put_line(xA%rowcount||' 部门编号为20的员工工资:'||vsal);
end loop;
close xA;
end;