Remove duplicate rows in MySQL
Easiest way to do this is to add a UNIQUE index on the column. When you write the ALTER statement,
Read moreEasiest way to do this is to add a UNIQUE index on the column. When you write the ALTER statement,
Read moreALTER IGNORE TABLE `cdr` ADD UNIQUE(`uniqueid`)
Read more