mysql error when importing tables

0

When I do an import of 44 tables mysql returns me the following error:

  

# 1062 - Duplicate entry '0000000001' for key 'PRIMARY'

Does anyone know what it can be? and how to solve?

    
asked by anonymous 15.08.2014 / 21:05

1 answer

2

There is already a record with the primary key 1, you are trying to reinsert data that already exists ...

    
15.08.2014 / 21:12