myql find duplicates

Solutions on MaxInterview for myql find duplicates by the best coders in the world

showing results for - "myql find duplicates"
Federica
08 Jan 2019
1SELECT 
2    col, 
3    COUNT(col)
4FROM
5    table_name
6GROUP BY col
7HAVING COUNT(col) > 1;
8Code language: SQL (Structured Query Language) (sql)