2016-07-21 20 views
0

Ich versuche, den folgenden Code auszuführen:Fehler 1064 (42000): Unbekannte Spalte

CREATE TABLE IF NOT Lage VORHANDEN ( LocationID int (10) NOT NULL, location varchar (25) NOT NULL, PRIMÄRSCHLÜSSEL (locationId) ) ENGINE = InnoDB DEFAULT CHARSET = latin1;

I einen Fehler den Code ausgeführt wird unter:

INSERT INTO location (locationId, locationName) -Werten (1, Millwall Park-London), (2, Isle of Dogs), (3, Windsor Castle-Grounds), (4 , Orford Ness-Suffolk), (5, Rancid Attic Studio), (6, St James Park-London);

Antwort

0

Verwenden Zitate:

INSERT INTO Lage (LocationID, Musterdorf) VALUES (1, "Millwall Park-London"), (2, "Isle of Dogs"), (3, "Windsor Castle-Anlagen"), (4, "Orford Ness-Suffolk"), (5, "Rancid Attic Studio"), (6, "St. James Park-London");

Hoffe das löst das Problem.

Verwandte Themen