Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Group by problem
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Divers
Thread ID:
00771194
Message ID:
00771304
Vues:
24
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--
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform