Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Improving sluggish SQL
Message
From
20/12/1999 13:02:14
Walter Meester
HoogkarspelNetherlands
 
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00306158
Message ID:
00306265
Views:
33
Bruce,

>I have some very large tables from which I have to get records NOT IN other very large tables. Code like this:

>select * from table1;
>where keyfield NOT IN;
>(select keyfield from table2)

how about

USE TABLE1
USE TABLE2 ORDER TAG keyfieldTag

SET RELATION TO Keyfield INTO Table2

BROWSE NORMAL FOR EOF("Table2")

You might want to copy this into a temp table

COPY TO Temptable EOF("Table2")

Walter,
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform