码迷,mamicode.com
首页 > 数据库 > 详细

Oracle 学习----游标(使用无参光标cursor)

时间:2019-04-09 11:00:17      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:ora   游标   etc   bms   .com   ima   declare   使用   alt   

表:

技术图片

 

----游标-----------------------------

declare
  cursor tt is select name,sal from temp;
  vname temp.name%type;
  vsal temp.sal%type;
begin
  open tt;
  loop
    fetch tt into vname,vsal;
    exit when tt%notfound;
    dbms_output.put_line(vname||‘-----‘||vsal);
  end loop;
  close tt;
end;
/

 

Oracle 学习----游标(使用无参光标cursor)

标签:ora   游标   etc   bms   .com   ima   declare   使用   alt   

原文地址:https://www.cnblogs.com/ln-qiqi/p/10675483.html

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