Finding duplicate values in MySQL February 02, 2018 select ColumnName, count(*) from TableName group by ColumnName having count(*) > 1 Read more