SQL错误#1062-键‘PRIMARY’的条目‘%1’重复

时间:2016-04-19 作者:crater87 jaimes

当我要导入数据库时,会出现下一个错误:

Error

SQL query:

--
-- Dumping data for table wp_comments
--
INSERT INTO wp_comments ( comment_ID , comment_post_ID , comment_author , comment_author_email , comment_author_url , comment_author_IP , comment_date , comment_date_gmt , comment_content , comment_karma , comment_approved , comment_agent , comment_type , comment_parent , user_id )
VALUES ( 1, 1, \'Sr WordPress\', \'\', \'https://wordpress.org/\', \'\', \'2016-03-05 18:59:12\', \'2016-03-06 00:59:12\', \'Hola, esto es un comentario.\\nPara borrar un comentario simplemente accede y revisa los comentarios de la entrada. Ahí tendrás la opción de editarlo o borrarlo.\', 0, \'post-trashed\', \'\', \'\', 0, 0 ) ;

MySQL said: Documentation
#1062 - Duplicate entry \'1\' for key \'PRIMARY\'
我应该怎么做才能修复它?

1 个回复
SO网友:Nabeel Khan

你的wp_comments 表已经有id为“1”的注释。

您需要删除现有条目。

如果要保留它们,请从要导入的所有注释中删除“id”字段。