Error Code: 1062. Duplicate entry '1' for key 'PRIMARY'

后端 未结 8 2192
既然无缘
既然无缘 2020-12-01 03:55

I have a problem on this error message, when i try this:

INSERT INTO `PROGETTO`.`UFFICIO-INFORMAZIONI` (`ID`, `viale`, `num_civico`,  
`data_apertura`, `data         


        
8条回答
  •  盖世英雄少女心
    2020-12-01 04:13

    If you are using PHPMyAdmin You can be solved this issue by doing this:

    CAUTION: Don't use this solution if you want to maintain existing records in your table.

    Step 1: Select database export method to custom:

    enter image description here

    Step 2: Please make sure to check truncate table before insert in data creation options:

    enter image description here

    Now you are able to import this database successfully.

提交回复
热议问题