🙂 most people come here to ask how they can get rid of duplicates.
It's more difficult than it sounds, mysql does not support inserting into the same row you select from, so this will not work:
INSERT INTO table SELECT * FROM table WHERE id=foo;
You'll have to do a select, store the data in php, build an insert query and execute it.
Also, remember that if you have 100% duplicate rows, there is no way in hell to get SQL to ever find one of them specifically, the will always match all queries exactly the same way (which is why you never want to have 100% duplicates in the first place)
A forum, a FAQ, email notification, what else do you need?