mysql duplicated row code example
Example 1: find duplicates mysql column
SELECT name, COUNT(*) c FROM table GROUP BY name HAVING c > 1;
Example 2: mysql find duplicates in same table
SELECT t1.*
FROM tableName AS t1
INNER JOIN(
SELECT duplicateField
FROM tableName
GROUP BY duplicateField
HAVING COUNT(duplicateField) > 1
)temp ON t1.duplicateField = temp.duplicateField
order by duplicateField
Example 3: duplicate row mysql
INSERT INTO table (col1, col2, col3)
SELECT col1, col2, col3 FROM table
WHERE something...;