第12篇 游标.doc

  1. 1、本文档共5页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
第12章 游标 游标:相当于Java中的ResultSet,可以存放批量的数据。 语法: 定义游标( 打开游标 ( 提取游标中的数据 ( 关闭游标 题: declare cursor cur is select sname from student; 定义游标 v_sname student.sname%type; begin open cur; 打开游标 fetch cur into v_sname; 提取游标中的数据 dbms_output.put_line(v_sname); close cur; 关闭游标 end; / 题: declare cursor c is select * from student; v_stu student%rowtype; begin open c; fetch c into v_stu; dbms_output.put_line(v_stu.sname||v_stu.sage); close c; end; / 利用循环遍历游标 declare cursor c is select * from student; v_stu student%rowtype; begin open c; loop fetch c into v_stu; dbms_output.put_line(v_stu.sname||v_stu.sage); exit when c%notfound; end loop; close c; end; / 题:查询工资最高的前3名员工信息 Loop循环: declare cursor c is select * from (select * from employees order by salary desc) where rownum4; v_emp employees%rowtype; begin open c; loop fetch c into v_emp; exit when c%notfound; dbms_output.put_line(v_emp.first_name); end loop; close c; end; / While循环: declare cursor c is select * from (select * from employees order by salary desc) where rownum4; v_emp employees%rowtype; begin open c; fetch c into v_emp; while c%found loop dbms_output.put_line(v_emp.first_name); fetch c into v_emp; end loop; close c; end; / For循环: declare cursor c is select * from student; begin for i in c loop dbms_output.put_line(i.sname||i.sage); end loop; end; / begin for i in (select * from student) loop dbms_output.put_line(i.sname||i.sage); end loop; end; / 游标的分类 显示游标与隐式游标 显示游标 不带参数的游标:以上写的程序都是不带参数的游标 带参数的游标:定义与使用游标时,可以从外界传入参数 带参数的游标 declare cursor c(v_sex student.ssex%type) is select sname from student where ssex=v_sex; v_sname student.sname%type; begin open c(男); fetch c into v_sname; while c%f

文档评论(0)

xuefei111 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档