How to optimise a sql doublon checker
https://stackoverflow.com/questions/1446032
Question
I would like to optimise my Doublon checker if anyone knows how it could be faster.
$doublonchecker="delete bad_rows.* from eMail as good_rows inner join eMail as bad_rows on bad_rows.EMAIL = good_rows.EMAIL and bad_rows.EMAIL_ID > good_rows.EMAIL_ID";
$resultdoublon = mysql_query($doublonchecker);
if (!$resultdoublon) {
die('Error : ' . mysql_error());
}
OTHER TIPS
That query would use an index on (EMAIL)
or on (EMAIL, EMAIL_ID)
. However, you shouldn't have to run that query more than once, so its performance shouldn't worry you too much. Once you have removed your "Doublons" just replace the index on (EMAIL)
with a UNIQUE KEY
on (EMAIL)
and you'll never have duplicate emails ever again.
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow