You are here

Finding duplicates in a MYSQL table

Wiki Terms: 

Finding duplicates in a MYSQL table

select name, count(name) as cnt
from term_data
group by name
having cnt > 1
order by cnt;

Theme by Danetsoft and Danang Probo Sayekti inspired by Maksimer