Oracle PLSQL Demo - 09.Open、Fetch遍历游标[Open, Fetch, Close Record CURSOR]

declare
r_emp scott.emp%rowtype;
cursor cur_emp is
select t.* from scott.emp t; begin open cur_emp; loop
fetch cur_emp
into r_emp; exit when cur_emp%notfound; dbms_output.put_line(r_emp.empno || ' ' || r_emp.sal); end loop; close cur_emp; end;
上一篇:3d照片环效果(修改版--添加了x轴y轴双向转动和修复模糊度的bug)


下一篇:eclipse使用CXF3.1.*创建webservice服务端客户端以及客户端手机APP(二)