Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
SQL optimization
Message
 
To
26/07/1999 14:00:49
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00246060
Message ID:
00246333
Views:
11
Keith,

I don't think you are going to get this in one select. You can get it in two though;
SELECT * FROM dmlError WHERE ErrorCode = "120" INTO CURSOR Temp NOFILTER

SELECT ... FROM DataPPO LEFT OUTER JOIN Temp ; 
             ON DataPPO.Fed_taxId + DataPPO.Tax_sufx = ;
                Temp.Fed_taxID + Temp.Tax_sufx ...
you will need the indexes on the conactentation of the two fields.
Previous
Reply
Map
View

Click here to load this message in the networking platform