Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Reports
Message
From
05/01/1999 09:19:39
 
 
To
05/01/1999 09:16:13
General information
Forum:
Visual FoxPro
Category:
Other
Title:
Miscellaneous
Thread ID:
00172710
Message ID:
00172722
Views:
27
>Mr Edward Pikman,
>
>I actually not quite understand the command of LEFT JOIN
>can you give me the example or more specific detail
>
>Thank for your help

LEFT [OUTER] JOIN specifies that the query result contains all rows from the table to the left of the JOIN keyword and only matching rows from the table to the right of the JOIN keyword. The OUTER keyword is optional; it can be included to emphasize that an outer join is created.
Select Customer.*,Orders.ordernumber ;
From Customer LEFT JOIN Orders ON Customer.Id=Orders.CustId
Edward Pikman
Independent Consultant
Previous
Reply
Map
View

Click here to load this message in the networking platform