MySQL: ALTER IGNORE

To remove duplicated rows in a table, use ALTER IGNORE.

IGNORE is a MySQL extension to standard SQL. It controls how ALTER TABLE works if there are duplicates on unique keys in the new table or if warnings occur when strict mode is enabled. If IGNORE is not specified, the copy is aborted and rolled back if duplicate-key errors occur. If IGNORE is specified, only the first row is used of rows with duplicates on a unique key, The other conflicting rows are deleted. Incorrect values are truncated to the closest matching acceptable value.


Posted

in

by

Tags:

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *