select distinct a.*,b.creationTime,b.actId,b.businessid,a.arch_no || '[' || a.year || ']' || a.record_no || '号' as arch_no1 from app_2.v_app_work_list b,
(select a.*,v.action_name,v.action_operator from 
(select t.businessid,t.actname as action_name,strcat(d.user_realname) as action_operator from app_2.v_app_work_list t, app_2.td_sm_user d where t.username = d.user_name group by t.businessid, t.actname) v,  
app_2.ta_arch_rec a where v.businessid(+) = a.cc_form_instanceid  ) a 
where b.username = 'zhouyuehong' and b.ec_name = '收文' and a.cc_form_instanceid = b.businessid 
order by b.creationTime desc;