Vraag : ALS exploitant die in SQL werken niet

Ik probeer om gegevens uit onze die lijsten te verkrijgen op multile ALS verklaringen worden gebaseerd.  De vraag werkt tot ik probeer om dit deel aan syntax toe te voegen
" codeBody "
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
SELECT VERSCHILLENDE avr.role_cd, avr.role_nm, td.person_id, tj.job_nm,
    tc.first_nm + ''+ tc.last_nm ALS „Volledige Naam“, td.job_id, tj.job_mne_cd
VAN ais_db.dbo.v_role avr 
    SLUIT me aan bij bill_db.dbo.t_person_legal_entity_role tpler 
        OP avr.role_cd = tpler.role_cd
    SLUIT me aan bij bill_db.dbo.t_contact tc OP tpler.person_id = tc.contact_id
    SLUIT me aan bij crs_db.dbo.t_distr td OP tpler.person_id = td.person_id
    SLUIT me aan bij crs_db.dbo.t_job tj OP tj.job_id = td.job_id
WAAR tc.active_flg = „Y“ EN tj.job_mne_cd ALS „geen Z%“ EN
    (avr.role_cd ZOALS „%Main Contact%“ 
        OF ALS „%Named Fiduciary%“
        OF ALS „%Day%“ OF NIET ALS „%Client Reporting%“ 
        OF ALS „%Proxy Contact%“
        OF ALS „%Revenue%“
        OF ALS „%Paper%“)

Antwoord : ALS exploitant die in SQL werken niet

U hebt vergeten om avr.role_cd vóór elk als toe te voegen

SQL is nog niet zo intelligent!
Andere oplossingen  
 
programming4us programming4us