Importation d'une table dans phpmysql

Fermé
al ali - 19 juil. 2014 à 13:40
totodunet Messages postés 1377 Date d'inscription mercredi 18 mars 2009 Statut Membre Dernière intervention 5 mars 2020 - 21 juil. 2014 à 19:42
slt atous g voulais importer cet table et voici ce qu'on affiche ci-dessous comment regler ca merci

create table classement
(numclass MEDIUMINT NOT NULL AUTO_INCREMENT ,
nom VARCHAR( 60 ) NOT NULL ,
score INT NOT NULL ,
INDEX (numclass)
) TYPE = innodb;

MySQL a répondu: 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 'TYPE = innodb' at line 6

1 réponse

totodunet Messages postés 1377 Date d'inscription mercredi 18 mars 2009 Statut Membre Dernière intervention 5 mars 2020 199
21 juil. 2014 à 19:42
salut,

essayes avec " InnoDB ", c'est certainement sensible à la casse pour spécifier le type de moteur
0