Error 1062. Duplicate entry in mysql
问题 I have a MySQL table whose schema in which column 1 is primary key. I have a tsv file which I need to insert in this table. Now, the tsv has repetition of primary key hence when I try to insert it in MySQL table it gives an error ERROR 1062 (23000): Duplicate entry '107664521128181760' for key 'PRIMARY' Is there any way by which if the primary key value already exists, then it should ignore and move further for next insertion. 回答1: You are probably looking for INSERT IGNORE INTO command. You