je veux créer une table y contenant une cle étangère d'une table w et une cle étrangère d'une table z.
J'ai tenté
CREATE TABLE y(
machin INT, truc INT,
INDEX (machin, truc),
FOREIGN KEY (machin) REFERENCES w(machin)
ON DELETE CASCADE
FOREIGN KEY (truc) REFERENCES z(truc)
ON DELETE CASCADE
) TYPE=INNODB;
euh ca doit pas être comme ca
comment kon fé?