首页 > 数据库技术 > 详细

oracle 游标使用(隐式游标)

时间:2014-07-13 00:29:10      阅读:441      评论:0      收藏:0      [点我收藏+]

1.(隐式游标)从学生表里面查询xing_ming为1的找到就打印 

the Policy is updated successfully.
否则打印
the policy is updated failed.
Set Serveroutput on;   
  
begin  
    update xuesheng set shu_xue = 1 where xing_ming = 1;   
       
    if SQL%Found then  
       dbms_output.put_line(the Policy is updated successfully.);   
       commit;   
    else  
      dbms_output.put_line(the policy is updated failed.);   
    end if;   
  
end;  
/

 

oracle 游标使用(隐式游标),布布扣,bubuko.com

oracle 游标使用(隐式游标)

原文:http://www.cnblogs.com/mrgong/p/3838191.html

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