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:
00771304
Views:
27
This message has been marked as a message which has helped to the initial question of the thread.
>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, DTOC(MAX(regdate)) as datum from auktlogg group by 1 into cursor cTempAuktion
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform