Find duplicates values in a MySQL table April 5, 2020 This post brought to you by RocketGeek, ButlerBlog, and the following: SELECT col, COUNT(col) FROM table_name GROUP BY col HAVING COUNT(col) > 1;