博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Oracle 隐式游标
阅读量:5242 次
发布时间:2019-06-14

本文共 386 字,大约阅读时间需要 1 分钟。

create or replace procedure 隐式游标 as

  flag CHAR := 'U' ;
begin
 if SQL%found then
  update table3 set TANAME='问问' where taid=1;
  commit;
 
  flag :='I';
  insert into table3(taid,taname,bqid) values(4,'人事部',2);
  commit;
  end if;
 
  if flag ='U' then
  dbms_output.put_line('表已更新');
  ELSE
  dbms_output.put_line('记录已插入');
  end if;
end 隐式游标;

转载于:https://www.cnblogs.com/yuan-2012/archive/2012/06/10/2543742.html

你可能感兴趣的文章
Device Tree Usage
查看>>
Python基础【day02】:字符编码(一)
查看>>
sample
查看>>
React 深入学习:ReactCreateRef
查看>>
Python: NumPy, Pandas学习资料
查看>>
记录医生开的药
查看>>
批处理弹窗
查看>>
VS code自定义语法高亮
查看>>
数据集:Introduction to Econometrics by Stock&Watson
查看>>
Jupyter Notebook不能自动打开浏览器
查看>>
鱼油资料
查看>>
Asp.Net Server.MapPath()用法
查看>>
一点css 基础
查看>>
webapi 之 post参数传递
查看>>
JQuery 判断复选框是否选中
查看>>
Win Server 2012 配置运行 .net core 环境
查看>>
swagger 的使用
查看>>
HTTP中GET,POST和PUT的区别
查看>>
转 Git使用教程,最详细,最傻瓜,最浅显,真正手把手教
查看>>
Asp.net Core 微信小程序支付
查看>>