Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Is it possible to make it faster ?
Message
De
26/02/2001 09:47:11
 
 
À
26/02/2001 09:19:04
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Divers
Thread ID:
00479477
Message ID:
00479497
Vues:
34
>SELECT A.F1, A.F2, B.F1 ;
>FROM A, B ;
>WHERE B.F2 = "1234" AND A.F1 = B.F1 ;
>INTO CURSOR mytemp
>

Why are you getting a.f1 and b.f1 when they are both the same (depending on Set exact)?

My version of this would be :
Select f1,f2 from a Where f1 in (Select f1 from b where f2 = '1234') ;
into cursor myTemp
Will Jones
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform