Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
SQL syntax help
Message
From
07/01/2000 11:35:55
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Title:
SQL syntax help
Miscellaneous
Thread ID:
00314532
Message ID:
00314532
Views:
67
I'm trying to select a list of records from 4 tables. What I want is to select only records from the parent table (CASELIST) where the record id is the intersection of CASELIST, ACTLIST, CASEPERLIST (only records whose key value is in all three tables). But I only want to select the records in CASEPERLIST that Inner join with a fourth table (PERSONLIST).

Could anyone tell me if this syntax is correct.

Select DISTINCT CaseList.* From ;
CaseList Inner Join ActList ;
Inner Join CasePerList ;
Inner Join PersonList ;
ON PersonList.cPerson_id = CasePerList.cPerson_id ;
ON CasePerList.cCase_id = ActList.cCase_id ;
ON ActList.cCase_id = CaseList.cCase_id ;
Into Cursor CaseSQL

Is there a better way (sequential rather than nested Joins) to write this?

TIA
Next
Reply
Map
View

Click here to load this message in the networking platform