Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
SQL to include rec's without children?
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Divers
Thread ID:
00226563
Message ID:
00226619
Vues:
26
Just put each join on separate lines:
SELECT Library.name;
   FROM library;
   LEFT OUTER JOIN Reps ON Library.rep_code = Reps.rep_code;
   LEFT OUTER JOIN LinkManu ON Library.code = LibLinkManu._Code;
   LEFT OUTER JOIN LinkSect ON Library.code = Linksect.Lib_code;
   INTO CURSOR Search_Me
HTH

>Sounds like the right direction, Sylvain! What syntax would I use to do a LEFT OUTER JOIN to Reps.Rep_Code AND LinkManu.Lib_Code AND Linksect.Lib_code (all three in one query)???
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform