Mysql
 sql >> Datenbank >  >> RDS >> Mysql

MySQL - Eine untergeordnete Zeile kann nicht hinzugefügt oder aktualisiert werden:Eine Fremdschlüsseleinschränkung schlägt fehl

Ich habe meine 'Fremdschlüssel-Einschränkung schlägt fehl gelöst ' Probleme durch Hinzufügen des folgenden Codes am Anfang des SQL-Codes (dies diente zum Importieren von Werten in eine Tabelle)

SET @[email protected]@CHARACTER_SET_CLIENT;
SET @[email protected]@CHARACTER_SET_RESULTS;
SET @[email protected]@COLLATION_CONNECTION;
SET NAMES utf8;
SET @[email protected]@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
SET @[email protected]@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
SET @[email protected]@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO';
SET @[email protected]@SQL_NOTES, SQL_NOTES=0; 

Fügen Sie dann diesen Code am Ende der Datei hinzu

SET [email protected]_SQL_MODE;
SET [email protected]_FOREIGN_KEY_CHECKS;
SET [email protected]_UNIQUE_CHECKS;
SET [email protected]_CHARACTER_SET_CLIENT;
SET [email protected]_CHARACTER_SET_RESULTS;
SET [email protected]_COLLATION_CONNECTION;
SET [email protected]_SQL_NOTES;