philippo: Error in MySQL Abfrage

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

  1. yo,

    INSERT INTO cms_content (name) VALUES ('zu')

    Ilja