where current of 子句

PL/SQL提供为update和delete语句在cursor中使用提供了where current of子句。这个子句让你容易地进行update和delete操作对最近fetch的行进行操作。 
语法: 
UPDATE table_name 
       SET set_clause 
     WHERE CURRENT OF cursor_name; 

  DELETE 
      FROM table_name 
     WHERE CURRENT OF cursor_name 

使用这个子句的作用主要是对上一次fetch的行进行update和delete操作,不需要在where条件中写=表达式,让where条件更简单,自动定位行。例子如下: 

-- where current of cursor 
declare 
  cursor  cemp is 
    select * from employees  for update;--要结合for update使用 vemp cemp%rowtype; 
begin 
  open cemp; 
  loop 
   fetch cemp into vemp; 
   exit when cemp%notfound; 
    update employees set salary=salary*1.2  where current of  cemp;--where current of 
  end loop; 
  commit; 
  close cemp; 
end;
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值