Mysql
 sql >> Database >  >> RDS >> Mysql

Come creare relazioni in MySQL

Se le tabelle sono innodb puoi crearle in questo modo:

CREATE TABLE accounts(
    account_id INT NOT NULL AUTO_INCREMENT,
    customer_id INT( 4 ) NOT NULL ,
    account_type ENUM( 'savings', 'credit' ) NOT NULL,
    balance FLOAT( 9 ) NOT NULL,
    PRIMARY KEY ( account_id ), 
    FOREIGN KEY (customer_id) REFERENCES customers(customer_id) 
) ENGINE=INNODB;

Devi specificare che le tabelle sono innodb perché il motore myisam non supporta la chiave esterna. Guarda qui per maggiori informazioni.