Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Sql vfp 9 probleme
Message
 
À
22/04/2013 14:36:31
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Versions des environnements
Visual FoxPro:
VFP 9 SP2
OS:
Windows Server 2008
Divers
Thread ID:
01570477
Message ID:
01571632
Vues:
53
Boris,

when i try this... i have a syntax error...?
 SELECT R1.Cnomteleph ,;
  R1.Iid ,;
  CAST( Cor9.IetatId AS I ) AS IetatId  , ;
  CAST( Cor9.nType AS I ) AS nType ,;
  Cor9.ccat_Physiq , ;
  cor9.ddebut,;
  cor9.Ltransfert,;
  CAST( 0 AS N( 2, 0) ) AS nposcatetat,;
  CAST( '' AS C(5) ) AS cetats,   ;
  CAST(  CTOT("    -  -  T00:00:00") AS T ) AS ddepart,  ;
  CAST(  CTOT("    -  -  T00:00:00") AS T ) AS dretour;
  FROM Resident R1 LEFT OUTER JOIN ( SELECT  E.iresidentId , ;
  NVL( E.nType, 0 ) AS nType ,;
  E.iid  AS IetatId ,;
  E.ccat_Physiq,;
  NVL( E.lTransfert , .F. ) AS lTransfert  ,;
  E.ddebut ;
  FROM Etats E inner JOIN  (;
  SELECT IresidentId,;
  MAX(IID) AS IId;
  FROM Etats GROUP BY IresidentId ) Etst ;
  ON E.IresidentId = Etst.IresidentId  AND  E.IId = Etst.IID) Cor9 ;
  WHERE R1.iid = cor9.iresidentId ;
  AND  EMPTY( TTOD( R1.dsortie ) ) ORDER BY R1.Cnomteleph INTO CURSOR temp
>>hi Boris,
>>
>>i have a little problem....
>>
>>if i want ALL R1.Cnomcustomer but also R1.Cnomcustomer without Etats...
>>
>>it's possible ?
>
>
>As Peter said change INNER JOIN to LEFT JOIN:
>
>* From
>....
>FROM Amline!Resident R1;
> INNER JOIN
>...
>
>* To:
>FROM Amline!Resident R1;
>LEFT JOIN
>
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform