失眠网,内容丰富有趣,生活中的好帮手!
失眠网 > Oracle使用游标更新数据 Oracle游标之select for update和where current of 语句

Oracle使用游标更新数据 Oracle游标之select for update和where current of 语句

时间:2023-09-12 17:50:43

相关推荐

Oracle使用游标更新数据 Oracle游标之select for update和where current of 语句

Oracle使用游标更新数据

11月20日 13:15:49hzwy23阅读数:5313

友情推广

###使用游标修改数据

####定义一个游标,游标名称为 mycursor

#####更新scott用户中emp表中empno为7369的销售额

-- Created on /11/30 by ZHANW declare he emp%rowtype;cursor mycursor(pid integer) is select * from emp where empno = pid for update;beginopen mycursor(7369);while(true) loopfetch mycursor into he; exit when mycursor%notfound;update emp set sal = 1111 where current of mycursor;end loop;end;

-- Created on /11/30 by ZHANW declare he emp%rowtype;cursor mycursor(pid integer) is select * from emp where empno = pid for update;beginopen mycursor(7369);while(true) loopfetch mycursor into he; exit when mycursor%notfound;delete from emp where current of mycursor;end loop;end;

123456789101112

###注意:

delete语句一定要写在exit后面,不然可能会报错。

####优化:

在定义游标时,可以在for update 后面添加 of 字段或者nowait。

/hzwy23/article/details/53240333

Oracle游标之select for update和where current of 语句

06月27日 10:57:09luckystar阅读数:3150

转载http://hanjiangduqiao./blog/static/61310544431111153601

使用select for update 语句可以使用行锁锁定你要更改的记录.当遇到下一个commit和rollback语句时会被释放.

TheSelect For Updatestatement allows you to lock the records in the cursor result set. You are not required to make changes to the records in order to use this statement. The record locks are released when the next commit or rollback statement is issued.

语法如下:The syntax for theSelect For Updateis:

CURSOR cursor_name

IS

select_statement

FOR UPDATE [of column_list] [NOWAIT];

当你要使用游标进行更新和删除操作时,则需要使用where current of 语句,这个是标示出当前游标的位置.

If you plan on updating or deleting records that have been referenced by aselect for updatestatement, you can use theWhere Current Ofstatement.

语法如下:The syntax for theWhere Current Ofstatement is either:

UPDATE table_name

SET set_clause

WHERE CURRENT OF cursor_name;

OR

DELETE FROM table_name

WHERE CURRENT OF cursor_name;

在这时的例子中我采用上面所建的test表来试验.

2.1 更新.

SQL> DECLARE

2 CURSOR test_cur IS SELECT * FROM test

3 FOR UPDATE OF sal;

4 BEGIN

5 FOR test_rec IN test_cur LOOP

6 UPDATE test

7 SET sal = test_rec.sal +1

8 WHERE CURRENT OF test_cur;

9 END LOOP;

10 COMMIT;

11 END;

12 /

PL/SQL 过程已成功完成。

2.2 删除.

SQL> DECLARE

2 CURSOR test_cur IS select * from test for update;

3 BEGIN

4 FOR test_rec IN test_cur LOOP

5 DELETE FROM test WHERE CURRENT OF test_cur;

6 END LOOP;

7 END;

8 /

PL/SQL 过程已成功完成。

文中的游标只是简单的使用,在记录到pl/sql详细编程的时候会再讲到时会结合oracle的执行计划并一起讨论它们的执行效率.

注:文中的英文注解部分出自:/oracle/cursors/current_of.php

/qincidong/article/details/9185693

如果觉得《Oracle使用游标更新数据 Oracle游标之select for update和where current of 语句》对你有帮助,请点赞、收藏,并留下你的观点哦!

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。