Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Finding Sequential Duplicates
Message
From
12/02/2009 18:01:12
 
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
01381412
Message ID:
01381455
Views:
53
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
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform