2014-01-20 31 views

回答

1

这个SQL查询应该给你不主动执行所有的非完成历史性的实例:

select h.proc_inst_id_ from act_hi_procinst h 
left join act_ru_execution x on x.proc_inst_id_ = h.proc_inst_id_ 
where h.end_act_id_ is null and x.proc_inst_id_ is null 
相关问题