您好,登錄后才能下訂單哦!
不知道大家之前對(duì)類似MySQL表與表之間有哪些關(guān)系的文章有無(wú)了解,今天我在這里給大家再簡(jiǎn)單的講講。感興趣的話就一起來看看正文部分吧,相信看完MySQL表與表之間有哪些關(guān)系你一定會(huì)有所收獲的。
表與表之間的關(guān)系
表1 foreign key 表2 則表1的多條記錄對(duì)應(yīng)表2的一條記錄,即多對(duì)一 利用foreign key的原理我們可以制作兩張表的多對(duì)多,一對(duì)一關(guān)系多對(duì)多: 表1的多條記錄可以對(duì)應(yīng)表2的一條記錄 表2的多條記錄也可以對(duì)應(yīng)表1的一條記錄 一對(duì)一: 表1的一條記錄唯一對(duì)應(yīng)表2的一條記錄,反之亦然 分析時(shí),我們先從按照上面的基本原理去套,然后再翻譯成真實(shí)的意義,就很好理解了
1、先確定關(guān)系
2、找到多的一方,把關(guān)聯(lián)字段寫在多的一方
一對(duì)多
多對(duì)一或者一對(duì)多(左邊表的多條記錄對(duì)應(yīng)右邊表的唯一一條記錄)
需要注意的:
1.先建被關(guān)聯(lián)的表,保證被關(guān)聯(lián)表的字段必須唯一。
2.在創(chuàng)建關(guān)聯(lián)表,關(guān)聯(lián)字段一定保證是要有重復(fù)的。
示例:
這是一個(gè)書和出版社的一個(gè)例子,書要關(guān)聯(lián)出版社(多個(gè)書可以是一個(gè)出版社,一個(gè)出版社也可以有好多書)。
誰(shuí)關(guān)聯(lián)誰(shuí)就是誰(shuí)要按照誰(shuí)的標(biāo)準(zhǔn)。
創(chuàng)建表
書要關(guān)聯(lián)出版社 被關(guān)聯(lián)的表 create table press(id int primary key auto_increment, name char(20)); 關(guān)聯(lián)的表 create table book( book_id int primary key auto_increment, book_name varchar(20), book_price int, press_id int, constraint Fk_pressid_id foreign key(press_id) references press(id) on delete cascade on update cascade );
插入數(shù)據(jù)
insert into press(name) values('新華出版社'), ('海燕出版社'), ('擺渡出版社'), ('大眾出版社'); insert into book(book_name,book_price,press_id) values('Python爬蟲',100,1), ('Linux',80,1), ('操作系統(tǒng)',70,2), ('數(shù)學(xué)',50,2), ('英語(yǔ)',103,3), ('網(wǎng)頁(yè)設(shè)計(jì)',22,3);
運(yùn)行結(jié)果
一對(duì)一
示例一:
用戶和管理員(只有管理員才可以登錄,一個(gè)管理員對(duì)應(yīng)一個(gè)用戶)
管理員關(guān)聯(lián)用戶
創(chuàng)建表
先建被關(guān)聯(lián)的表 create table user( id int primary key auto_increment, #主鍵自增name char(10) ); 再建關(guān)聯(lián)表 create table admin( id int primary key auto_increment, user_id int unique, password varchar(16), foreign key(user_id) references user(id) on delete cascade on update cascade );
插入數(shù)據(jù)
insert into user(name) values('susan1'),('susan2'),('susan3'),('susan4')('susan5'),('susan6'); insert into admin(user_id,password) values(4,'sds156'),(2,'531561'),(6,'f3swe');
運(yùn)行結(jié)果
示例二:
學(xué)生表和客戶表
創(chuàng)建表
create table customer( id int primary key auto_increment, name varchar(10), qq int unique, phone int unique ); create table student1( sid int primary key auto_increment, course char(20), class_time time, cid int unique, foreign key(cid) references customer(id) on delete cascade on update cascade );
插入數(shù)據(jù)
insert into customer(name,qq,phone) values('小小',13564521,11111111),('嘻哈',14758254,22222222),('王維',44545522,33333333),('胡軍',545875212,4444444),('李希',145578543,5555555),('李迪',754254653,8888888),('艾哈',74545145,8712547),('嘖嘖',11147752,7777777); insert into student1(course,class_time,cid) values('python','08:30:00',3),('python','08:30:00',4),('linux','08:30:00',1),('linux','08:30:00',7);
運(yùn)行結(jié)果
多對(duì)多
書和作者(我們可以再創(chuàng)建一張表,用來存book和author兩張表的關(guān)系)
要把book_id和author_id設(shè)置成聯(lián)合唯一
聯(lián)合唯一:unique(book_id,author_id)
聯(lián)合主鍵:alter table t1 add primary key(id,avg)
多對(duì)多:一個(gè)作者可以寫多本書,一本書也可以有多個(gè)作者,雙向的一對(duì)多,即多對(duì)
關(guān)聯(lián)方式:foreign key+一張新的表
示例:
創(chuàng)建表
========書和作者,另外在建一張表來存書和作者的關(guān)系 #被關(guān)聯(lián)的 create table book1( id int primary key auto_increment, name varchar(10), price float(3,2) ); #========被關(guān)聯(lián)的 create table author( id int primary key auto_increment, name char(5) ); #========關(guān)聯(lián)的 create table author2book( id int primary key auto_increment, book_id int not null, author_id int not null, unique(book_id,author_id), foreign key(book_id) references book1(id) on delete cascade on update cascade, foreign key(author_id) references author(id) on delete cascade on update cascade );
插入數(shù)據(jù)
insert into book1(name,price) values('九陽(yáng)神功',9.9), ('葵花寶典',9.5), ('辟邪劍譜',5), ('降龍十巴掌',7.3); insert into author(name) values('egon'),('e1'),('e2'),('e3'),('e4'); insert into author2book(book_id,author_id) values(1,1),(1,4),(2,1),(2,5),(3,2),(3,3),(3,4),(4,5);
多對(duì)多關(guān)系舉例
用戶表,用戶組,主機(jī)表
創(chuàng)建三張表
-- 用戶表 create table user (id int primary key auto_increment,username varchar(20) not null,password varchar(50) not null); insert into user(username,password) values('egon','123'),('root',147),('alex',123),('haiyan',123),('yan',123); -- 用戶組表 create table usergroup(id int primary key auto_increment,groupname varchar(20) not null unique); insert into usergroup(groupname) values('IT'),('Sale'),('Finance'),('boss'); -- 主機(jī)表 CREATE TABLE host(id int primary key auto_increment,ip CHAR(15) not NULL UNIQUE DEFAULT '127.0.0.1'); insert into host(ip) values('172.16.45.2'),('172.16.31.10'),('172.16.45.3'),('172.16.31.11'),('172.10.45.3'), ('172.10.45.4'),('172.10.45.5'),('192.168.1.20'),('192.168.1.21'),('192.168.1.22'),('192.168.2.23'),('192.168.2.223'), ('192.168.2.24'),('192.168.3.22'),('192.168.3.23'),('192.168.3.24');
建立關(guān)系
-- 建立user和usergroup的關(guān)系表 create table user2usergroup( id int not NULL UNIQUE auto_increment, user_id int not null, group_id int not NULL, PRIMARY KEY(user_id,group_id), foreign key(user_id) references user(id) ON DELETE CASCADE on UPDATE CASCADE , foreign key(group_id) references usergroup(id) ON DELETE CASCADE on UPDATE CASCADE ); insert into user2usergroup(user_id,group_id) values(1,1),(1,2),(1,3),(1,4),(2,3),(2,4),(3,4); -- 建立user和host的關(guān)系 create table user2host( id int not null unique auto_increment, user_id int not null, host_id int not null, primary key(user_id,host_id), foreign key(user_id) references user(id), foreign key(host_id) references host(id) ); insert into user2host(user_id,host_id) values(1,1),(1,2),(1,3),(1,4),(1,5),(1,6),(1,7),(1,8),(1,9),(1,10),(1,11),(1,12),(1,13),(1,14),(1,15),(1,16),(2,2),(2,3),(2,4),(2,5),(3,10),(3,11),(3,12);
看完MySQL表與表之間有哪些關(guān)系這篇文章,大家覺得怎么樣?如果想要了解更多相關(guān),可以繼續(xù)關(guān)注我們的行業(yè)資訊板塊。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。