热门标签 | HotTags
当前位置:  开发笔记 > 数据库 > 正文

OraclePLSQL在游标中用while循环实例程序

OraclePLSQL在游标中用while循环实例程序

Oracle PLSQL 在游标中用while循环实例程序

Oracle PLSQL 在游标中用while循环实例程序

Oracle PLSQL 在游标中用while循环实例程序

declare
cursor emp_cur is select * from emp;
v_emp emp%rowType;
begin
open emp_cur;

while emp_cur%notfound --while肯定要跟loop一起用的 且是控制循环体的
loop
fetch emp_cur into v_emp;
dbms_output.put_line(v_emp.ename);

end loop;
close emp_cur;
end;

//实例二

关于cursor循环,有两种方式:
1. 使用loop, exit (不用while)
如:
loop
fetch emp_cur into v_emp;
exit when emp_cur%notfound;
dbms_output.put_line(v_emp.ename);
end loop;
2. 使用while, 这时先要fetch
fetch emp_cur into v_emp;
while (emp_cur%found)
loop
dbms_output.put_line(v_emp.ename);
fetch emp_cur into v_emp;
end loop;

?>

推荐阅读
author-avatar
朱鹏飞0521
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有