Mike Gagnon
Programmer
Anyone know how to check for duplicates on MySql with VFP?
Mike Gagnon
If you want to get the best response to a question, please check out FAQ184-2483 first.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT COUNT(*) FROM your_table GROUP BY some_column_or_columns_or_expressions HAVING COUNT(*) > 1
COUNT(*)