Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
No Duplicates
Message
 
 
À
04/05/2010 15:36:04
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Titre:
Divers
Thread ID:
01462570
Message ID:
01463086
Vues:
45
This message has been marked as a message which has helped to the initial question of the thread.
>Oh is there a way i can number records? as in if a all records get a value of one an if it is encountered again it gets incremented an gets 2 and if i see it a thrid time it gets 3 etc?so example
>we have three instances of peter
>the first one will be
>
>1 peter
>2 peter
>3 peter
>
If your original table doesn't have an ID field (or fields combinations making a unique key), then in VFP the only way would be to rely on recno()

I already posted this version in my previous replies.

If you want to add this to the select, then

select Name, cast(0 as I) as IDField from myTable group by Name having count(*) > 1 into cursor csrDups readwrite

replace all IDField with recno() in csrDups
If it's not broken, fix it until it is.


My Blog
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform