码迷,mamicode.com
首页 > 其他好文 > 详细

定义游标

时间:2015-07-03 12:12:53      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:

declare
cursor 游标名称
is
查询语句;
begin
--其他语句
end;
列子:
declare
cursor cur_stu
is
select name from student where id=2;
sname student.name%type;
result varchar2(20);
begin
open cur_stu;
loop
fetch cur_stu into sname;
exit when cur_stu%notfound;
result:=result||sname||‘‘;
end loop;
dbms_output.put_line(‘我的名字叫‘ || result);
close cur_stu;
end;

定义游标

标签:

原文地址:http://www.cnblogs.com/wush-2015/p/4618126.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!