Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Group by problem
Message
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00771194
Message ID:
00771351
Views:
19
Thank's Sergey,

You are right. The same solution was provided by Elmer Adkins. You will get one star.




>>Hi All,
>>
>>How to get this working in VFP8 without setting ENGINEBEHAVIOR TO 70 ?
>>
>>
Select cauktcid, DTOC(regdate) as datum from auktlogg group by 1 into cursor cTempAuktion
>>
>>I want to have one record for each cauktid in table auktlogg with the date.
>
>From which record this date should come? If you don't care or it's the same for cauktcid than you can use MIN() or MAX() function.
>
Select cauktcid, MAX(DTOC(regdate)) as datum from auktlogg group by 1 into cursor cTempAuktion
/Torgny
Previous
Reply
Map
View

Click here to load this message in the networking platform