摘要:oracle关闭游标的方法:1、使用close关闭,语法如“close mycursor;”;2、使用for循环,等待自行关闭即可。本文操作环境:Windows7系统、Dell G3电脑、Oracle 11g版。oracle游标怎么
oracle关闭游标的方法:1、使用close关闭,语法如“close mycursor;”;2、使用for循环,等待自行关闭即可。
本文操作环境:Windows7系统、Dell G3电脑、Oracle 11g版。
oracle游标怎么关闭?
1. 用open打开的,用close关闭
declarecursor mycursor isselect * from emp for update;myrecord emp%rowtype;beginopen mycursor;loopfetch mycursor into myrecord;exit when mycursor%notfound;if (myrecord.sal=2000) thenupdate empset sal=2001where current of mycursor;end if;end loop;close mycursor;commit;end;2. 用for 循环的,循环完了就自己关了
declarecursor mycursor isselect * from emp;beginfor i in mycursorloopdbms_output.put_line(i.job);end loop;end;相关推荐:oracle数据库学习教程
相关文章推荐
网站谷歌评分90+意味着什么?2022-09-06
怎样将不安全网站变成安全网站访问?2022-09-26
网站排名下降,可能跟算法更新没关系2022-09-20
网站如何设置高质量的网页标题?2022-09-14
做外贸网站选哪些语言?法语、德语最吃香2022-09-13