Is there a way to overwrite or skip duplicate records?

1062 - Duplicate entry '2' for key 1

is there a way to add : insert on duplicate key update to a sql file that only has insert?

link|improve this question

1  
Insufficient input - More information needed to provide answer. – JohnFx Nov 29 '10 at 16:32
more importantly why would you want a duplicate key? a key identifies a single record in a table... – Leslie Nov 29 '10 at 18:12
I need to change it to insert on duplicate key update the sql insert file but not sure how – acctman Nov 29 '10 at 18:21
feedback

2 Answers

Have a look at 12.2.5.1. INSERT ... SELECT Syntax and 12.2.5. INSERT Syntax

And look for

Specify IGNORE to ignore rows that would cause duplicate-key violations.

link|improve this answer
feedback

try this:

INSERT ON DUPLICATE KEY UPDATE 

Although usually people forget to put the autoincrement field for the id and thus the error.

link|improve this answer
can I just stick that anywhere near the top? – acctman Nov 29 '10 at 17:35
yes you can. read the docs anyway for a complete description on usage – Elzo Valugi Nov 29 '10 at 18:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.