Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Another what's faster question!!!
Message
From
11/10/2002 12:54:43
Calvin Smith
Wayne Reaves Computer Systems
Macon, Georgia, United States
 
 
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00710254
Message ID:
00710420
Views:
12
Once you get your indexes set correctly you might try:
select name as name, address as address, alltrim(city) + ' ' + alltrim(zip) as city;
from rchld;
where (rca = 'ATL' .or. rca = 'NAT');
.and. exp_date >= date();
.and. inlist(left(codes,1),'1','2','3');
into table temp;
order by name

Then
sele temp
scan
distribute the records to the correct tables.
endscan
A problem is a problem only as long as it has a possible solution. Lacking that, it becomes a FACT!
Previous
Reply
Map
View

Click here to load this message in the networking platform