MySQL erreur de syntaxe - SQL/NoSQL - Programmation
Marsh Posté le 15-09-2003 à 14:46:05
je suis un boulet j'avais oublié l'index sur la deuxieme table
Marsh Posté le 15-09-2003 à 18:39:31
mais non mais non...
la prochaine fois, attend 10 min de plus avant de poster
Marsh Posté le 15-09-2003 à 14:37:27
CREATE TABLE forum (
id_forum INT NOT NULL,
intitule_forum VARCHAR(200),
PRIMARY KEY (id_forum))
TYPE = InnoDB;
CREATE TABLE thread (
id_thread INT NOT NULL,
id_forum INT NOT NULL,
PRIMARY KEY (id_thread),
FOREIGN KEY (id_forum) REFERENCES forum(id_forum))
TYPE = InnoDB;
ERROR 1005: Can't create table '.\forum\thread.frm' (errno: 150)
sous mysql4 je comprends pas ...