Bonjour,
J'essaie d'importer le fichier SQL exporté de MySQL Workbench dans une base MySQL (en localhost avec UwAmp) mais cela ne fonctionne pas :
MySQL a répondu: Documentation
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8 CREATE TABLE IF NOT EXISTS `FAMILLE_ARTICLES` ( `IdFamArt` INT(10) NOT NULL, `DesignFamArt` VARCHAR(50) NULL DEFAULT NULL, PRIMARY KEY (`IdFamArt`), INDEX `index1` (`IdFamArt` ASC) VISIBLE, INDEX `DesignFamArt` (`DesignFamArt` ASC) VISIBLE) ENGINE = InnoDB DEFAULT CHARACTER SET = latin1
Je ne suis pas un spécialiste : est-ce que vous pourriez m'aider à savoir pourquoi cela ne fonctionne pas ?#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 'VISIBLE,
INDEX `DesignFamArt` (`DesignFamArt` ASC) VISIBLE)
ENGINE = InnoDB
' at line 5
Je vous remercie.
Bien cordialement.
Partager