[mysql] relation n:m comment kon fait?

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;
 
 
:d
euh ca doit pas être comme ca :d
comment kon fé?

Reply

Marsh Posté le 22-01-2004 à 09:47:17   

Reply

Marsh Posté le 22-01-2004 à 10:38:38    

bah si, c'est comme ça.

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed