Oracle存储过程游标用法分析
本文实例讲述了Oracle存储过程游标用法。分享给大家供大家参考,具体如下:
使用游标的5个步骤
1、声明一些变量用于保存select语句返回的指
2、声明游标,并指定select语句
3、打开游标
4、从游标中获取记录
5、关闭游标
从游标中获取每一条记录可使用fetch语句。fetch语句将列的指读取到指定的变量中;
语法:
fetchcursor_name intovariable[,variable...];
例子:
createorreplaceproceduresel_person is v_idperson.id%type; v_nameperson.pname%type; v_birthdayperson.birthday%type; cursortemp_cursorisselect*fromperson; begin opentemp_cursor; loop fetchtemp_cursorintov_id,v_name,v_birthday; exitwhentemp_cursor%notfound; dbms_output.put_line(v_id||'----'||v_name||'----'||v_birthday); endloop; closetemp_cursor; endsel_person;
备注:为了确定循环是否结束,可以使用布尔变量temp_cursor%notfound。当fetch达到游标中最后一条记录,不能再读取更多记录的时候,这个变量就为真。
希望本文所述对大家Oracle程序设计有所帮助。