外鍵的變種 三種關係

由於有foreign key的約束,使得兩張表造成了三種了關係:mysql

  • 多對一
  • 多對多
  • 一對一

2、重點理解若是找出兩張表之間的關係

1)書和出版社sql

  一對多(或多對一):一個出版社能夠出版多本書。看圖說話。ide

  關聯方式:foreign keyurl

 

 

 

 

 

# 建立被關聯表author表,以前的book表在講多對一的關係已建立
create table author(
    id int primary key auto_increment,
    name varchar(20)
);
#這張表就存放了author表和book表的關係,即查詢兩者的關係查這表就能夠了
create table author2book(
    id int not null unique auto_increment,
    author_id int not null,
    book_id int not null,
    constraint fk_author foreign key(author_id) references author(id)
    on delete cascade
    on update cascade,
    constraint fk_book foreign key(book_id) references book(id)
    on delete cascade
    on update cascade,
    primary key(author_id,book_id)
);

#插入四個做者,id依次排開
insert into author(name) values('小明'),('heshun'),('張三'),('李四');
# 每一個做者的表明做
小明: 九陽神功、九陰真經、九陰白骨爪、獨孤九劍、降龍十巴掌、葵花寶典
heshun: 九陽神功、葵花寶典
張三:獨孤九劍、降龍十巴掌、葵花寶典
李四:九陽神功

# 在author2book表中插入相應的數據

insert into author2book(author_id,book_id) values
(1,1),
(1,2),
(1,3),
(1,4),
(1,5),
(1,6),
(2,1),
(2,6),
(3,4),
(3,5),
(3,6),
(4,1)
;
# 如今就能夠查author2book對應的做者和書的關係了
mysql> select * from author2book;
+----+-----------+---------+
| id | author_id | book_id |
+----+-----------+---------+
|  1 |         1 |       1 |
|  2 |         1 |       2 |
|  3 |         1 |       3 |
|  4 |         1 |       4 |
|  5 |         1 |       5 |
|  6 |         1 |       6 |
|  7 |         2 |       1 |
|  8 |         2 |       6 |
|  9 |         3 |       4 |
| 10 |         3 |       5 |
| 11 |         3 |       6 |
| 12 |         4 |       1 |
+----+-----------+---------+
12 rows in set (0.00 sec)
做者與書籍關係(多對多)

(3)用戶和博客spa

  一對一:一個用戶只能註冊一個博客,即一對一的關係。看圖說話3d

  關聯方式:foreign key+uniquecode

 

 

 

 

 

#例如: 一個用戶只能註冊一個博客

#兩張表: 用戶表 (user)和 博客表(blog)
# 建立用戶表
create table user(
    id int primary key auto_increment,
    name varchar(20)
);
# 建立博客表
create table blog(
    id int primary key auto_increment,
    url varchar(100),
    user_id int unique,
    constraint fk_user foreign key(user_id) references user(id)
    on delete cascade
    on update cascade
);
#插入用戶表中的記錄
insert into user(name) values
('alex'),
('wusir'),
('egon'),
('xiaoma')
;
# 插入博客表的記錄
insert into blog(url,user_id) values
('http://www.cnblog/alex',1),
('http://www.cnblog/wusir',2),
('http://www.cnblog/egon',3),
('http://www.cnblog/xiaoma',4)
;
# 查詢wusir的博客地址
select url from blog where user_id=2;
相關文章
相關標籤/搜索