Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
RUSHMORE Question...
Message
From
26/01/1999 00:50:34
 
 
To
25/01/1999 12:38:59
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00179878
Message ID:
00180152
Views:
25
Salut Ricardo!

Try using sys(3054,11). Note the 11 as the second param and not 1. 11 also shows the optimization for the join condition. 1 shows only the optimizations for WHERE conditions.

Although you have your condition in the WHERE clause, the condition is in fact a join condition. Your SELECT could have been (equivalent):

SELECT * ;
FROM CUSTOMER A INNER JOIN ORDERS B ;
ON A.CUST_ID = B.CUST_ID ;
INTO CURSOR QTEMP

Only sys(3054,11) shows the optimizations for this kind of conditions.

Vlad
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform