SELECT ODRĘBNY avr.role_cd, avr.role_nm, td.person_id, tj.job_nm,
tc.first_nm + '' + tc.last_nm "imię i nazwisko", td.job_id, tj.job_mne_cd
OD ais_db.dbo.v_role avr
ŁĄCZYĆ bill_db.dbo.t_person_legal_entity_role tpler
NA avr.role_cd = tpler.role_cd
ŁĄCZYĆ bill_db.dbo.t_contact tc NA tpler.person_id = tc.contact_id
ŁĄCZYĆ crs_db.dbo.t_distr td NA tpler.person_id = td.person_id
ŁĄCZYĆ crs_db.dbo.t_job tj NA tj.job_id = td.job_id
DOKĄD tc.active_flg = "Y" I tj.job_mne_cd NIE LUBIĆ "Z%" I
(avr.role_cd LUBIĆ "%Main Contact%"
LUB JAK "%Named Fiduciary%"
LUB JAK "%Day%" LUB NIE JAK "%Client Reporting%"
LUB JAK "%Proxy Contact%"
LUB JAK "%REVENUE%"
LUB JAK "%PAPER%")
|