[求助]oracle下怎么创建游标
可不可以给我例子看看,谢谢!!!!!!!1
--隐式游标
set serveroutput on;
begin
update emp set sal=sal+100 where empno=111;
if SQL%found then
dbms_output.put_line('编号7369的员工工资已更新');
else
dbms_output.put_line('编号7369的员工未找到');
end if;
end;
--显示游标
declare
vsal emp.sal%type;
cursor x is select sal from emp where deptno=20;
begin
open x;
loop
fetch x into vsal;
exit when x%notfound;
dbms_output.put_line(x%rowcount||' 部门编号为20的员工工资:'||vsal);
end loop;
close x;
end;
希望我发的这两个针对EMP表操作的游标示例对你有所帮助