This is my first question, so please be kind if this question has already been asked. And my English is not very good;) I have a XAMPP MySQL server and you want to make a statement INSERT SELECT, but if I run the statement, I will get this error: #1062 - Duplicate entry '0' for key 'PRIMARY'
Here is my SQL statement:INSERT INTO amt (Bezeichnung)
SELECT Bezeichnung
FROM fach
But I do not want to rewrite the table "amt", it should be added only to the table fach.
I want to add this table image of the table "fach"
to this. table image "amt"
"Bezeichnung" = GER, description; "amt" = GER function
source
share