Ed Leafe wrote:
> SELECT * FROM FileA ;
> JOIN FileB ON FileA.store_no + FileA.slsper + FileA.division = ;
> FileB.store_no + FileB.slsper + FileB.division
>
> There's nothing wrong with your syntax, although with large tables
> it may be a lot slower.
>
You could also use the "old" syntax (still works in VFP7)
SELECT FILEA.* FROM FileA,FileB WHERE FileA.store_no + FileA.slsper +
FileA.division = ;
FileB.store_no + FileB.slsper + FileB.division
Peter
_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the
author, and do not constitute legal or medical advice. This statement is added
to the messages for those lawyers who are too stupid to see the obvious.