您的位置:首页 > 数据库 > Oracle

oracle 存储过程游标学习

2013-12-04 10:11 423 查看
使用游标的5个步骤

1、声明一些变量用于保存select语句返回的指

2、声明游标,并指定select 语句

3、打开游标

4、从游标中获取记录

5、关闭游标

 

从游标中获取每一条记录可使用fetch语句。fetch语句将列的指读取到指定的变量中;

语法:

fetch cursor_name
into variable[, variable ...];

 

例子:

 

create or replace procedure sel_person
is
v_id person.id%type;
v_name person.pname%type;
v_birthday person.birthday%type;
cursor temp_cursor is select * from person;
begin
open temp_cursor;
loop
fetch temp_cursor into v_id,v_name,v_birthday;
exit when temp_cursor%notfound;
dbms_output.put_line(v_id||'----'||v_name||'----'||v_birthday);
end loop;
close temp_cursor;
end sel_person;

 

备注:为了确定循环是否结束,可以使用布尔变量temp_cursor%notfound。当fetch达到游标中最后一条记录,不能再读取更多记录的时候,这个变量就为真。

 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: