What is the most efficient way to prune a mysql table of about 40,000 rows. What i would like to do is remove rows with the same title.
The only way i can think to do this is to look at each title (all 40,00 of them) then search for that title in the rest of the table (seems very inefficient), so i was hoping someone knows of a better way.
2007-01-10
17:45:23
·
2 answers
·
asked by
Brady
3
in
Computers & Internet
➔ Programming & Design
Sorry, maybe i wasn't clear. I know how to delete a row, but finding the rows to delete is the part i'm not sure about. Like i said, only way i can think is move through each row, and search for it in the rest of the database, very inefficient.
2007-01-10
19:09:31 ·
update #1