Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Is it possible to make it faster ?
Message
From
26/02/2001 09:47:11
 
 
To
26/02/2001 09:19:04
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00479477
Message ID:
00479497
Views:
35
>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
Previous
Reply
Map
View

Click here to load this message in the networking platform