Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Dis-JOIN-ted
Message
 
To
30/06/1999 14:52:46
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Miscellaneous
Thread ID:
00236082
Message ID:
00236098
Views:
11
>The version of Btrieve that I'm working with as a back end to my VFP front end doesn't support JOINs according to it's help file. How could I accomplish the following without using a JOIN?
>
>SELECT TableA.Field1 + TableB.Field2 FROM TableA JOIN TableB ON TableA.Field1 = TableB.Field3
>
Bob,
SELECT TableA.Field1 + TableB.Field2 ;
  FROM TableA, TableB ;
 WHERE TableA.Field1 = TableB.Field3
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform