pl_sql中的游标操作(Cursor operations in pl_sql).doc

pl_sql中的游标操作(Cursor operations in pl_sql).doc

  1. 1、本文档共30页,可阅读全部内容。
  2. 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
pl_sql中的游标操作(Cursor operations in pl_sql)

pl_sql中的游标操作(Cursor operations in pl_sql) / * Cursor (pointer, pointer to the head of the result set) In pl/SQL, it is used to traverse the result set of a multi-row record The cursor moves one way and does not remove the boundary. If it has moved to the end of the result set, the cursor always points to the last record Classification of cursors Explicit cursor Implicit cursor Dynamic cursors * / / * Explicit cursor (the select query corresponding to the cursor is fixed) define Cursor cursor name is query statement; (read only cursor) The cursor begins with cur_ Your cursor 1. Open cursor name; 2. Loop loop (loop, while, for) Get the data from the cursor The fetch directive moves the pointer down to get a row of data pointing to the current pointer Fetch cursor name into variable; The cursor has 4 commonly used properties (with initialization value false false 0 false) (read-only property) % FOUND - TRUE % NOTFOUND - when the % NOTFOUND attribute of the cursor is TRUE, the result set that the current cursor points to is in the tail % ROWCOUNT - the number of rows represented by the % ROWCOUNT of the cursor (the number of rows moved by the cursor) The % ISOPEN - cursor is open, always FALSE Remember to close the cursor after use Close cursor name; * / - iterate over all the employee information in the emp table declare Define explicit cursors Cursor cur_emp is select * from emp; V_emp emp % rowtype; The begin The open cur_emp; -- iterate over the cursor - loop cycle / * loop The fetch cur_emp into v_emp; Exit the when cur_emp % notfound; -- write business code Dbms_output. Put_line ( serial number: | | cur_emp % rowcount | | employee number: | | v_emp. Empno | |, employee name: | | v_emp, ename | |, engaged in position: | | v_emp. The job); End loop; * / Dbms_output. Put_line (cur_emp % rowcount); If cur_emp % notfound then Dbms_output. Put_line ( true ); The else Dbms_output. Put_line ( false ); End the if; If cur_emp % found then Dbms_output. Put_line ( true ); The

您可能关注的文档

文档评论(0)

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

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

版权声明书
用户编号:8000054077000003

1亿VIP精品文档

相关文档