select c.running_id, uf.user_name, uf.dep_name, f.dispose_time, uc.user_name, c.flow_state_id
  from running_flow c, user_dispose_flow f, user_info uc, user_info uf
  where c.running_id=f.running_id and f.flow_step_id=1
    and f.user_id=uf.user_id and c.user_id=uc.user_id
    and exists(select 1 from user_dispose_flow i 
                 where i.running_id=c.running_id and i.user_id=本人的ID)