get duplicates in sql server using row_number code example
Example 1: sql count duplicate rows
SELECT _column, COUNT(*)
FROM _table
GROUP BY _column
HAVING COUNT(*) > 1
Example 2: how to get duplicate records with multiple field in sql
SELECT username, email, COUNT(*)
FROM users
GROUP BY username, email
HAVING COUNT(*) > 1