MySQL - kann keine Tabellen erstellen



  • PHPMyAdmin schrieb:

    Error

    SQL query:

    CREATE TABLE `test` (
    `foo` VARCHAR NOT NULL
    ) ENGINE = MYISAM

    MySQL said: Documentation
    #1064 - 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 'NOT NULL) ENGINE = myisam' at line 1

    Den gleichen Fehler krieg ich auch, wenn ichs "von Hand" auf der MySQL-Konsole versuche. Hab auch schon /var/lib/mysql geloescht und mysql neu installiert... nichts. Ideen?



  • CREATE TABLE test ( 
    foo VARCHAR(255) NOT NULL 
    )
    

    (ungetestet)



  • Ja, das wars, danke.


Anmelden zum Antworten