博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
orcale 匿名代码块
阅读量:6883 次
发布时间:2019-06-27

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

declare   cursor readflow_cur is  select * from od_readflow t where t.flowid is null;  l_emp od_readflow%rowtype;begin  open readflow_cur;   loop       fetch readflow_cur into l_emp;       exit when readflow_cur%notfound;       update od_readflow r set r.flowid = (select d.flow_id from od_docinfo d where d.bill_id = l_emp.flowinstanceid) where r.readid = l_emp.readid;    end loop;   commit;   close readflow_cur;end;

 

转载于:https://www.cnblogs.com/fashflying/p/5949988.html

你可能感兴趣的文章
转下载豆瓣音乐小站歌曲
查看>>
php中转义html标签
查看>>
jQuery.extend 函数详解
查看>>
The Nature of Lisp
查看>>
chineking / WeiboCrawler / wiki / Home — Bitbucket
查看>>
Java用native2ascii命令做unicode编码转换
查看>>
POST jpeg upload with AFNetworking
查看>>
wow 我的书单
查看>>
文件上传+截图+预览升级版-我们到底能走多远系列(23)
查看>>
C++ ORM - fg100emil的专栏 - 博客频道 - CSDN.NET
查看>>
html5之Canvas绘图工具基础介绍
查看>>
CSS:当鼠标移动到表格的某一行时改变其背景颜色
查看>>
在OEL5上安装配置Oracle Gird Control 10.2.0.5
查看>>
EXIT_SUCCESS_百度百科
查看>>
[转]C# 4.0 新特性
查看>>
HDU-4536 XCOM Enemy Unknown 枚举
查看>>
HDU 湫秋系列故事——安排座位 组和DP
查看>>
该不该让Google收录WordPress的目录页和标签页?
查看>>
Hypertable 0.9.7.3 发布,分布式数据库
查看>>
【leetcode】Best Time to Buy and Sell Stock
查看>>