[MySQL 4.0] Probleme beim tabellen erstellen

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • [MySQL 4.0] Probleme beim tabellen erstellen

    Hi, also tabellen konnt ich bis jetzt eiegntlich immer ohne probs erstellen, aber heute ist en komsiches problem da:

    Hab per testzwecken ueber phpmyadmin ne neue datenbank angelegt, und dort ne tabelle erstellt:

    Code:
    CREATE TABLE `test` (
    
    `number` INT UNSIGNED NOT NULL AUTO_INCREMENT ,
    `name` CHAR( 12 ) NOT NULL ,
    `password` CHAR( 16 ) NOT NULL ,
    `first` TEXT NOT NULL ,
    `second` TEXT NOT NULL ,
    `third` TEXT NOT NULL ,
    `fourth` TEXT NOT NULL ,
    `fifth` TEXT NOT NULL ,
    `sixth` TEXT NOT NULL ,
    `seventh` TEXT NOT NULL ,
    `count` SMALLINT UNSIGNED NOT NULL ,
    `ip` CHAR( 15 ) NOT NULL ,
    `writedate` DATETIME UNSIGNED NOT NULL ,
    PRIMARY KEY ( `numver` ) 
    )
    Bekomme aber diese Fehlermeldung:

    - 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 'UNSIGNED NOT NULL, PRIMARY KEY (`numver`))' at line 1

    was ist da falsch?? weil ich habs ja per phpmyadmin gemacht, und viel falsch am code koennte nix sein.

    benutze die minixampp von Apachefriends.org !

  • #2
    wer lesen kann, ist klar im vorteil:

    number != numver

    *schäm dich*
    Kissolino.com

    Kommentar


    • #3
      nein, numver ist schon richtig, hab das nur nachtraeglich als number geaendert!

      Kommentar


      • #4
        Original geschrieben von whitelove05
        nein, numver ist schon richtig, hab das nur nachtraeglich als number geaendert!
        was ist das denn für ne taktik ?

        nimm mal beim datetime das "unsigned" noch raus raus,
        dann gehts auch.
        Kissolino.com

        Kommentar

        Lädt...
        X