Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
5 Tables left out join problem
Message
From
12/01/2000 12:07:45
 
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00316921
Message ID:
00317039
Views:
20
hmmm, it worked

Thanks Thanks Thanks

I hear that it will be 80 degree in Dallas today, I missed Texas winter (I meant fall)

Mo

>First try it with the joins un-nested. Note, you will no longer be able to use the View Designer to modify this view. You will have to maintain all the code for this in a PRG.[e.g., Create SQL View MyView as...]:
>
>
>SELECT operation.CODE, operation.description, cRpt011.*, cRpt012.*,;
>	cRpt013.*, cRpt014.*;
>	FROM  operation ;
>                    LEFT OUTER JOIN cRpt011;
>                             ON  operation.CODE = cRpt011.operation1;
>                    LEFT OUTER JOIN cRpt012;
>	               ON  operation.CODE = cRpt012.operation2 ;
>	      LEFT OUTER JOIN cRpt013;
>	               ON  operation.CODE = cRpt013.operation3 ;
>	      LEFT OUTER JOIN cRpt014 ;
>	               ON  operation.CODE = cRpt014.operation4 ;
>	ORDER BY 1;
>	INTO CURSOR cLast
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform