Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Possible to optimize subquery??
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Divers
Thread ID:
00237460
Message ID:
00237475
Vues:
17
>>Hi,
>>
>>I have a table 'person' with 11000 records and a small temporary dbf 'localTest' with 9 records.
>>
>>The query below takes 10(!) seconds to perform and the resultset is 65 records. The SET DELETED setting does not change this time, nor if I have an index on UPPER(id) in 'localTest'. There is an index on UPPER(person.company_id).
>>
>>SELECT person.firstname ;
>> FROM person ;
>> WHERE UPPER(person.company_id) IN (SELECT UPPER(id) FROM localTest)
>>
>>Does anyone know how this query can be optimized so that it uses Rushmore, or is this not possible??
>>
>>
>>Klas Nygren
>Klas,
>
>Is it quicker to join the files?
>
>SELECT Person.FirstName FROM Person, LocalTest WHERE Person.Company_id = LocalTest.Id

Ian,

It is much faster to join the tables. However, the subquery I am trying to speed up is part of a larger query in which it is not possible to replace the subquery with a join.

Klas
(using VFP 3.0 for Win & Mac)
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform