Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Can I do this SQL Select in 1 step?
Message
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00669031
Message ID:
00669054
Views:
17
>>I have this table (T1.dbf)
>>
>>EmpID     EffectiveDate      Value
>>1         {5/6/2}            17
>>1         {3/4/2}            18
>>1         {1/1/1}             5
>>2         {4/5/2}            18
>>2         {1/1/1}             6
>>3         {4/12/2}           16
>>3         {1/1/1}             7
>>
>>and want to return this for a parameter of {4/8/2}
>>
>>EmpID     EffectiveDate      Value
>>1         {3/4/2}            18
>>2         {4/5/2}            18
>>3         {1/1/1}             7
>>
>>Currently I have to do it in 2 steps.
>>
>>1 Select EmpID, max(EffectiveDate) as ED
>>  from t1 ;
>>  where EffectiveDate <= ?dParam ;
>>  group by EmpID ;
>>  into cursor Temp
>>2 Select Temp.*, T1.Value ;
>>  from Temp join T1 on Temp.EmpId + Temp.ED = T1.EmpID + T1.EffectiveDate
>>
>>Can anyone get it down to 1 step?
>
>What's that good for? Often, the less-steps code is less readable also. And it's often also less fast. Okay, I'll elaborate my second statement: It's not always faster.


Separating a query in two or more steps was a good way to optimize the speed of a query...
But I agree: It's not always faster. :-)
If we exchange an apple, we both get an apple.
But if we exchange an idea, we both get 2 ideas, cool...


Gérald Santerre
Independant programmer - internet or intranet stuff - always looking for contracts big or small :)
http://www.siteintranet.qc.ca
Previous
Reply
Map
View

Click here to load this message in the networking platform