首页 > 数据库技术 > 详细

PL/SQL个人学习笔记(二)

时间:2014-09-02 10:35:24      阅读:328      评论:0      收藏:0      [点我收藏+]
IF条件

declare 

  cursor s is 
          select version from city_server t;
  s_ city_server.version%type;
begin
  open s;
  fetch s into s_;
        if s_>2 
          then
        DBMS_OUTPUT.put_line(s_);
        end if;
  close s;

end;


LOOP循环
declare 
  cursor s is 
          select version from city_server t;
  s_ city_server.version%type;
begin
  open s;
  loop
      fetch s into s_;
        exit when s%notfound;
        DBMS_OUTPUT.put_line(s_);
  end loop;
  close s;
end;


PL/SQL个人学习笔记(二)

原文:http://blog.csdn.net/ztt_1119/article/details/39001207

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!