Mysql
 sql >> Datenbank >  >> RDS >> Mysql

So erstellen Sie Beziehungen in MySQL

Wenn die Tabellen innodb sind, können Sie sie wie folgt erstellen:

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;

Sie müssen angeben, dass die Tabellen innodb sind, da die Myisam-Engine keine Fremdschlüssel unterstützt. Sehen Sie hier nach Für mehr Information.