真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

MySQL中的外鍵作用是什么

小編給大家分享一下MySQL中的外鍵作用是什么,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

10年的呼中網(wǎng)站建設(shè)經(jīng)驗(yàn),針對(duì)設(shè)計(jì)、前端、開發(fā)、售后、文案、推廣等六對(duì)一服務(wù),響應(yīng)快,48小時(shí)及時(shí)工作處理。營(yíng)銷型網(wǎng)站建設(shè)的優(yōu)勢(shì)是能夠根據(jù)用戶設(shè)備顯示端的尺寸不同,自動(dòng)調(diào)整呼中建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計(jì),從而大程度地提升瀏覽體驗(yàn)。成都創(chuàng)新互聯(lián)公司從事“呼中網(wǎng)站設(shè)計(jì)”,“呼中網(wǎng)站推廣”以來,每個(gè)客戶項(xiàng)目都認(rèn)真落實(shí)執(zhí)行。

MySQL外鍵的作用:

保持?jǐn)?shù)據(jù)一致性,完整性,主要目的是控制存儲(chǔ)在外鍵表中的數(shù)據(jù)。使兩張表形成關(guān)聯(lián),外鍵只能引用外表中列的值!

我們來建兩個(gè)表

CREATE TABLE `example1` (
  `stu_id` int(11) NOT NULL DEFAULT '0',
  `course_id` int(11) NOT NULL DEFAULT '0',
  `grade` float DEFAULT NULL,
  PRIMARY KEY (`stu_id`,`course_id`)
);
CREATE TABLE `example2` (
  `id` int(11) NOT NULL,
  `stu_id` int(11) DEFAULT NULL,
  `course_id` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `f_ck` (`stu_id`,`course_id`),
  CONSTRAINT `f_ck` FOREIGN KEY (`stu_id`, `course_id`) REFERENCES `example1` (`stu_id`, `course_id`)
);
insert into example1 (stu_id,course_id,grade)values(1,1,98.5),(2,2,89);
insert into example2 (id,stu_id,course_id)values(1,1,1),(2,2,2);

我們建了

example1表,里面包含stu_id學(xué)號(hào),course_id課程號(hào),grade分?jǐn)?shù)

example2表,里面包含id,stu_id學(xué)號(hào),course_id課程號(hào),然后建立外鍵

分別插入數(shù)據(jù)到兩個(gè)表中。

我們把example2中的stu_id和course_id稱為example2表的外鍵,example1是父表,example2是字表,兩個(gè)表形成關(guān)聯(lián),必須字表的數(shù)據(jù)刪除后,才能刪除父表中的對(duì)應(yīng)數(shù)據(jù)

現(xiàn)在我們來刪除example1中的一條數(shù)據(jù)

delete from example1 where stu_id=2;

會(huì)發(fā)現(xiàn)報(bào)錯(cuò)

ERROR 1451 (23000): Cannot delete or update a parent row: a foreign key constraint fails (`test`.`example3`, CONSTRAINT `f_ck` FOREIGN KEY (`stu_id`, `course_id`) REFERENCES `example2` (`stu_id`, `course_id`))

因?yàn)閑xample2中的數(shù)據(jù)關(guān)聯(lián)了example1的數(shù)據(jù),這樣是刪不了的,達(dá)到了外鍵的作用;

然后我們來先刪除example2表中的數(shù)據(jù),再刪除example1表中的數(shù)據(jù)

delete from example2 where stu_id=2;
delete from example1 where stu_id=2;

這樣就成功了;

事件觸發(fā)限制:

on delete和on update , 可設(shè)參數(shù)cascade(跟隨外鍵改動(dòng)), restrict(限制外表中的外鍵改動(dòng)),set Null(設(shè)空值),set Default(設(shè)默認(rèn)值),[默認(rèn)]no action

我們來看看事件觸發(fā)限制是干嘛的。。。

我們先刪除外鍵,然后重新建立外鍵帶上事件觸發(fā)限制

alter table example2 drop foreign key f_ck; alter table example2 add CONSTRAINT `f_ck` FOREIGN KEY (`stu_id`, `course_id`) REFERENCES `example1` (`stu_id`, `course_id`) ON DELETE CASCADE ON UPDATE CASCADE;

我們先查看一下數(shù)據(jù)

mysql> select * from example1;select * from example2;
+--------+-----------+-------+

| stu_id | course_id | grade |

+--------+-----------+-------+

|      1 |         1 |  98.5 |

+--------+-----------+-------+

1 row in set (0.00 sec)

+----+--------+-----------+

| id | stu_id | course_id |

+----+--------+-----------+

|  1 |      1 |         1 |

+----+--------+-----------+

1 row in set (0.00 sec)

這時(shí)example1和example2中的stu_id和course_id都是1,

再來修改example1表中的數(shù)據(jù)看看

update example1 set stu_id=3,course_id=3 where stu_id=1;

再來查看數(shù)據(jù)

mysql> select * from example1;select * from example2;
+--------+-----------+-------+

| stu_id | course_id | grade |

+--------+-----------+-------+

|      3 |         3 |  98.5 |

+--------+-----------+-------+

1 row in set (0.00 sec)

+----+--------+-----------+

| id | stu_id | course_id |

+----+--------+-----------+

|  1 |      3 |         3 |

+----+--------+-----------+

1 row in set (0.00 sec)

發(fā)現(xiàn)沒,example1和example2中的stu_id和course_id都變成了3

我們?cè)趤韯h除example1表中的數(shù)據(jù)

delete from example1 where stu_id=3;

會(huì)發(fā)現(xiàn)可以刪除,而且example2中的數(shù)據(jù)也沒有了;

其實(shí)啊,外鍵就這個(gè)作用,保持?jǐn)?shù)據(jù)一致性,完整性,是不讓改還是一起改,由事件觸發(fā)器決定;

看完了這篇文章,相信你對(duì)MySQL中的外鍵作用是什么有了一定的了解,想了解更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!


網(wǎng)站名稱:MySQL中的外鍵作用是什么
網(wǎng)站路徑:http://weahome.cn/article/jdheig.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部