Error in query (1062): Duplicate entry

Actually, you do not have any duplicate entry. I fixed mine using the INSERT INGNORE INTO command. Manually open and edit the sql file using the VS Code or any other code editor (VS Code because you can change up to 10,000 appearances easily). Use this command in place of the INSERT INTO command. You may not have to change all the appearances in the dump file, just that table affected.

You can learn more about this command here MySQL INSERT IGNORE Statement Explained By Examples.