Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to find duplicates
Message
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00358922
Message ID:
00358926
Views:
12
here's what I usually use:
select field, count(field) as cnt;
 from table;
 group by 1 order by 2;
 having cnt > 1
>I know there was a thread here recently that discussed finding duplicates using SQL... but the UT search seems to be broken, so I'll ask if anyone can provide the thread # or sample code.
>
>TIA
Peter Franz
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform