您好,登錄后才能下訂單哦!
這篇文章給大家介紹mysql外鍵設(shè)置方式是什么,內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
保持數(shù)據(jù)一致性,完整性,主要目的是控制存儲在外鍵表中的數(shù)據(jù)。 使兩張表形成關(guān)聯(lián),外鍵只能引用外表中的列的值!
例如:
a b 兩個表
a表中存有 客戶號,客戶名稱
b表中存有 每個客戶的訂單
有了外鍵后
你只能在確信b 表中沒有客戶x的訂單后,才可以在a表中刪除客戶x
建立外鍵的前提: 本表的列必須與外鍵類型相同(外鍵必須是外表主鍵)。
指定主鍵關(guān)鍵字: foreign key(列名)
引用外鍵關(guān)鍵字: references <外鍵表名>(外鍵列名)
事件觸發(fā)限制: on delete和on update , 可設(shè)參數(shù)cascade(跟隨外鍵改動), restrict(限制外表中的外鍵改動),set Null(設(shè)空值),set Default(設(shè)默認值),[默認]no action
例如:
outTable表 主鍵 id 類型 int
創(chuàng)建含有外鍵的表:
create table temp( id int, name char(20), foreign key(id) references outTable(id) on delete cascade on update cascade);
說明:把id列 設(shè)為外鍵 參照外表outTable的id列 當(dāng)外鍵的值刪除 本表中對應(yīng)的列篩除 當(dāng)外鍵的值改變 本表中對應(yīng)的列值改變。
mysql外鍵設(shè)置方式/在創(chuàng)建索引時,可指定在delete/update父表時,對子表進行的相應(yīng)操作,
包括: restrict, cascade,set null 和 no action ,set default.
restrict,no action:
立即檢查外鍵約束,如果子表有匹配記錄,父表關(guān)聯(lián)記錄不能執(zhí)行 delete/update 操作;
cascade:
父表delete /update時,子表對應(yīng)記錄隨之 delete/update ;
set null:
父表在delete /update時,子表對應(yīng)字段被set null,此時留意子表外鍵不能設(shè)置為not null ;
set default:
父表有delete/update時,子表將外鍵設(shè)置成一個默認的值,但是 innodb不能識別,實際mysql5.5之后默認的存儲引擎都是innodb,所以不推薦設(shè)置該外鍵方式。如果你的環(huán)境mysql是5.5之前,默認存儲引擎是myisam,則可以考慮。
選擇set null ,setdefault,cascade 時要謹慎,可能因為錯誤操作導(dǎo)致數(shù)據(jù)丟失。
如果以上描述并不能理解透徹,可以參看下面例子。
country 表是父表,country_id是主鍵,city是子表,外鍵為country_id,和country表的主鍵country_id對應(yīng)。
create table country( country_id smallint unsigned not null auto_increment, country varchar(50) not null, last_update timestamp not null default current_timestamp on update current_timestamp, primary key(country_id) )engine=INNODB default charset=utf8; CREATE TABLE `city` ( `city_id` smallint(5) unsigned NOT NULL auto_increment, `city` varchar(50) NOT NULL, `country_id` smallint(5) unsigned NOT NULL, `last_update` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, PRIMARY KEY (`city_id`), KEY `idx_fk_country_id` (`country_id`), CONSTRAINT `fk_city_country` FOREIGN KEY (`country_id`) REFERENCES `country` (`country_id`) on delete restrict ON UPDATE CASCADE ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
例如對上面新建的兩個表,子表外鍵指定為:on delete restrict ON UPDATE CASCADE 方式,在主表刪除記錄的時候,若子表有對應(yīng)記錄,則不允許刪除;主表更新記錄時,如果子表有匹配記錄,則子表對應(yīng)記錄 隨之更新。
eg:
insert into country values(1,'wq',now()); select * from country; insert into city values(222,'tom',1,now()); select * from city;
delete from country where country_id=1; update country set country_id=100 where country_id=1; select * from country where country='wq'; select * from city where city='tom';
關(guān)于mysql外鍵設(shè)置方式是什么就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。