relation n:m comment kon fait? [mysql] - SQL/NoSQL - Programmation
Marsh Posté le 22-01-2004 à 09:47:17
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é?
Marsh Posté le 22-01-2004 à 10:38:38
bah si, c'est comme ça.
Make sure you enter the(*)required information where indicate.HTML code is not allowed
Marsh Posté le 22-01-2004 à 09:47:17
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é?