Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Query has very basic structure for rushmore
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Versions des environnements
Visual FoxPro:
VFP 9
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
Visual FoxPro
Divers
Thread ID:
01029945
Message ID:
01029993
Vues:
18
--------------------------
First query
--------------------------
select * ;
  from abone ;
  JOIN hurun ON abone.hurun  = hurun.id ;
   AND hurun.exp like "Merh%" ;
  JOIN ekler ON abone.ekler = ekler.id
** Result : selected 309 records in 6.55 seconds



Rushmore optimization level for table abone: none
Rushmore optimization level for table hurun: none
Rushmore optimization level for table ekler: none

Joining table ekler and table abone using index tag Ekler
Joining table hurun and intermediate result using temp index


---------------------------
Second query
---------------------------
select * ;
  from abone ;
  JOIN ekler on abone.ekler  = ekler.id ;
   AND ekler.exp like "Arkd%" ;
  JOIN hurun ON abone.hurun = hurun.id
** Result : Selected 1155 records in 0.03 seconds

Rushmore optimization level for table abone: none
Rushmore optimization level for table hurun: none
Rushmore optimization level for table ekler: none
Joining table ekler and table abone using index tag Ekler
Joining table hurun and intermediate result using temp index
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform