游标的操作(一)中学会定义游标的操作,但这远远不够,还有一些语句需要了解使用。
游标属于SQL语句,因此SQL的关键字依然可用,例如判断游标是否打开:
if emp_cursor % isopen then
fetch emp_cursor into v_ename,v_sal;
else
open emp_cursor;
end if;
使用 loop 与 %rowcount 属性检索数据的行数:
loop
fetch emp_cursor into v_name,v_sal;
exit when emp_cursor%rowcount> 5 or emp_cursor%notfound;
end loop;
例1:用简单的循环控制从员工表employees中取出某一部门员工姓名和工资,存入temp表中(先定义表temp)
create table temp(fname varchar2(20),lname varchar2(25),sal number(8,2));
declare
v_deptno employees.department_id%type:=&p_deptno;
v_fname employees.first_name%type;
v_lname employees.last_name%type;
v_sal employees.salary%type;
cursor emp_cursor is select first_name,last_name,salary
from employees where department_id = v_deptno;
begin
open emp_cursor;
loop
fetch emp_cursor into v_fname,v_lname,v_sal;
exit when emp_cursor%notfound;
insert into temp(fname,lname,sal) values(v_fname,v_lname,v_sal);
end loop;
close emp_cursor;
commit;
end;