Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
SQL to include rec's without children?
Message
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00226563
Message ID:
00226619
Views:
27
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)???
Previous
Reply
Map
View

Click here to load this message in the networking platform