forked from chenwei/weaver-matfron
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
285 B
Plaintext
9 lines
285 B
Plaintext
create view lizhi_view as
|
|
select distinct * from (
|
|
select resourceid ,changedate from hrmstatushistory where type_n=5
|
|
union
|
|
select lzyg as resourceid , zhgzr as changedate from formtable_main_616 f,workflow_requestbase r where f.requestid= r.requestid and r.currentnodetype=3
|
|
) b
|
|
|
|
|