我們可以使用 ALTER TABLE 語句在現有 MySQL 資料表的欄位中加入 FOREIGN KEY 限制。
ALTER TABLE table_name ADD FOREIGN KEY (colum_name) REFERENCES table with Primary Key(column_name);
假設我們要在表格“Orders1”上新增一個外鍵約束,並引用表格“Customer”,該表格的主鍵為“Cust_Id”欄位。可以藉助以下查詢來完成 -
mysql> Alter table orders1 add FOREIGN KEY(Cust_id) REFERENCES Customer(Cust_id); Query OK, 0 rows affected (0.21 sec) Records: 0 Duplicates: 0 Warnings: 0 mysql> Describe ORDERS1; +--------------+-------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +--------------+-------------+------+-----+---------+-------+ | order_id | int(11) | NO | PRI | NULL | | | Product_name | varchar(25) | YES | | NULL | | | orderdate | date | YES | | NULL | | | Cust_id | int(11) | YES | MUL | NULL | | +--------------+-------------+------+-----+---------+-------+ 4 rows in set (0.05 sec)
以上是我們如何為現有 MySQL 表的欄位新增 FOREIGN KEY 約束?的詳細內容。更多資訊請關注PHP中文網其他相關文章!