Error in MySQL Abfrage
philippo
- datenbank
0 Ilja
Moin
mein MySQL Statement:
INSERT INTO cms_content (name), ('zu')
wobei in der Tabelle cms_content das Feld Name vorhanden ist (varchar,100). Leider bekomme ich immer folgende Meldung:
"You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near ' ('zu')' at line 1"
Wieso, was mache ich falsch!?
Gruß
philippo
yo,
INSERT INTO cms_content (name) VALUES ('zu')
Ilja