oracle游标的使用
时间:2021-07-01 10:21:17
帮助过:5人阅读
游标的使用
步骤1、声明游标
2、打开游标
3、获取数据
4、关闭游标
declare
cursor cur
is
select * from emp;
t_sal cur%rowtype;
begin
open cur;
loop
fetch cur
into t_sal;
exit when cur
%notfound;
dbms_output.put_line(t_sal.ename || ‘:‘ || t_sal.sal);
end loop;
close cur;
end;
oracle游标的使用
标签:div from font weight cursor 取数 class color int