Find Duplicate Rows In A Table

[Solved] Find Duplicate Rows In A Table | Sql - Code Explorer | yomemimo.com
Question : Find duplicate rows in a table

Answered by : zahid-hasan

SELECT col, COUNT(col)
FROM table_name
GROUP BY col
HAVING COUNT(col) > 1;

Source : | Last Update : Mon, 07 Dec 20

Answers related to find duplicate rows in a table

Code Explorer Popular Question For Sql