Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to delete duplicate records from a mysql database. With the below command, it will delete all duplicates and will keep one row. In my database there are 300,000 records and I expect some 100,000 rows are duplicates.

The duplicates need to be deleted by the below command but the problem is, I had given the command in the evening after 9 hours it is still running.

 DELETE n1 FROM tableA n1,tableA n2 WHERE n1.title= n2.title AND n1.id > n2.id

What is happening? Can anyone explain?

share|improve this question
Do you have an index defined on title for each table? – Interrobang Oct 6 '12 at 4:48
@Interrobang title are in one tableA only .the column title contains the title of article i want to delete the duplicate – payal Oct 6 '12 at 4:51
this command seems okay and no reason for this time delay.You might have problems in table relation or records. – Kaidul Islam Sazal Oct 6 '12 at 5:11
@KaidulIslamSazal i have earlier performed delete command for other column of same table.it took approx 886 seconds so i was expecting the similar time for this operation as well. should i repair the table and again run the command?? – payal Oct 6 '12 at 5:17

1 Answer

up vote 2 down vote accepted

Trying:

select * from tableA as n1 join tableA as n2 on n1.title = n2.title AND n1.id > n2.id;

And to explain it: n1.title = n2.title does not use an index.

This query will be better:

delete from `t2` where `id` in (
    select cid from (
       select max(id) as cid from t2 group by title having count(*) > 1
    ) as c
);
share|improve this answer
i am trying your code.but can you please explain how your code is using index and my code is not using index – payal Oct 6 '12 at 5:43
Using group by ... better than title = title,these two are the same are not using the index,unless you create a index by title field – Zenofo Oct 6 '12 at 5:46
i tried your code and seems same thing happening again it is executing but dont know how much time it will take – payal Oct 6 '12 at 5:53
Not soon,but this is the best solution for your case – Zenofo Oct 6 '12 at 5:55
h0ow much time it will take approx can u please tell . i have approx 100000 duplicate data – payal Oct 6 '12 at 5:56
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.