OldtTimerDon
Programmer
Assume that I have two name and address tables: mynew and myold. Let's populate both of them with client, zip and phoneno (and other fields).
I seek a query that would produce a listing of old clients who are not in the new clients file.
Select client, zip, phoneno from myold where client not in(select client, zip, phoneno from mynew order by client) into cursor missingdata is an unsupported query. How can I accomplish my goal?
There must be a better way than doing a query that produces a cursor of records that are common to both files. I could then do a scan that compares to the two files and creates a table of those that are not in the mynew file. Anybody have a better solution?
Senile Senior Don
Sun City, AZ
I seek a query that would produce a listing of old clients who are not in the new clients file.
Select client, zip, phoneno from myold where client not in(select client, zip, phoneno from mynew order by client) into cursor missingdata is an unsupported query. How can I accomplish my goal?
There must be a better way than doing a query that produces a cursor of records that are common to both files. I could then do a scan that compares to the two files and creates a table of those that are not in the mynew file. Anybody have a better solution?
Senile Senior Don
Sun City, AZ