MySQL SQL Delete Notes

MySQL SQL Delete Notes

Note: This article will be emailed to your friend.

To delete duplicates from a MySQL database table I normally copy the duplicate data first to a temporary table and then use the copied id’s to delete from the original table.

Delete using the temporary can take two forms. First is the slow way:

delete from target where id in (select id from temp);

This can be [...]

Read the rest of this article (140 words)

Please fill in the following fields

* - Required

Your Name: *

Your E-Mail: *

Your Remarks:

Friend's Name: *

Friend's E-Mail: *

Protected by Comment Guard Pro