bonjoue � tous,

j'ai un probl�me avec ma requ�te SQL sous SAS:
Code : S�lectionner tout - Visualiser dans une fen�tre � part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 
proc sql;
    create table "Z:\tmp\&REPERTOIRE.FINAL"  as
    select *
         from 
          ("Z:\tmp\&REPERTOIRE.ORIGINE" as a,
          "Z:\tmp\&REPERTOIRE.RETOUR_CHARADE"(keep=NUMMMC RS1 RS2 NBNPAI) as b,
          "Z:\tmp\&REPERTOIRE.RETOUR_RNVP"   (keep=NUMMMC ADRESSE2_R ADRESSE3_R ADRESSE4_R ADRESSE5_R  CP_R VILLE_R RNVP IDFOYER TYPE_FOYER) as  c,
          "Z:\tmp\&REPERTOIRE.RETOUR_AMABIS" (keep=NUMMMC TELEPHONE) as d
         where  a.NUMMMC=b.NUMMMC and b.NUMMMC=c.NUMMMC and  c.NUMMMC=d.NUMMMC ) as e 
 
     left join    (select *
                   from "Z:\tmp\&REPERTOIRE.DOUBLES" as  f
                   left join "Z:\tmp\&REPERTOIRE.RETOUR_CEGEDIM" as g
		           on  f.SIRET_CEGEDIM=g.SIRET_CEGEDIM) as h
    on e.SIRET_CEGEDIM= h.SIRET_CEGEDIM;
 
quit;
je gal�re et je n'arrive pas � trouver l'erreur!

merci pour votre aide.