游标的操作(二)

游标的操作(一)中学会定义游标的操作,但这远远不够,还有一些语句需要了解使用。

游标属于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; 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值