Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Finding Sequential Duplicates
Message
De
12/02/2009 18:01:12
 
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
01381412
Message ID:
01381455
Vues:
54
Try something like this (substitute the field for the actual field name that you want to check for duplicates on):

SELECT field,COUNT(DUNSNum) AS dupcount ;
FROM table ;
GROUP BY field;
HAVING dupcount>1 ;
INTO CURSOR c_dupes
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform