Signalwerk - Web-Code-Library

Find Duplicate Entries

Doppelte Einträge in einer MySQL-Tabelle finden

SELECT COUNT(*), col1, col2 FROM table
GROUP BY col1, col2
HAVING COUNT(*)>1

Zurück zur Web-Code-Lib