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;

 

相关文章:

  • 2022-12-23
  • 2021-10-03
  • 2022-12-23
  • 2021-04-25
  • 2022-12-23
  • 2022-12-23
  • 2021-06-11
猜你喜欢
  • 2022-01-27
  • 2022-12-23
  • 2021-11-15
  • 2022-01-10
  • 2022-12-23
  • 2021-06-15
  • 2022-12-23
相关资源
相似解决方案