MYSQL回顾(表关系相关)

数据库表有三种关系:

  1. 多对一
  2. 多对多
  3. 一对一

多对一

外键在“多”侧

比如有两个表,分别是书籍表和出版社表。书籍和出版社是典型的多对一关系,即一本书只能由一个出版社出版,一个出版社可以出版多本书。则书籍表应该有一个外键press_id指向出版社表的id primary key

建表顺序

先建被关联表(多)即出版社表,再建关联表即书籍表(一)
关联表(书籍表)有一个外键press_id指向被关联表的主键(出版社id)

实践

# 先建被关联表
mysql> create table press(

    -> id int primary key,

    -> name char(40)

    -> ) auto_increment=1;

Query OK, 0 rows affected (0.05 sec)
# 再建关联表
mysql> create table book(

    -> id int primary key,

    -> name char(60) not null,

    -> press_id int,

    -> constraint fk_press foreign key(press_id) references press(id)

    -> on delete cascade

    -> on update cascade

    -> ) auto_increment=1;

Query OK, 0 rows affected (0.02 sec)

插入数据

先插入被关联表记录
再插入关联表记录

mysql> insert into press(id, name) values(1, "北京邮电出版社"), (2, "中信出版社");

Query OK, 2 rows affected (0.00 sec)

Records: 2  Duplicates: 0  Warnings: 0

mysql> insert into book(id, name, press_id) values

    -> (1, "计算机基础", 1),

    -> (2, "操作系统", 1),

    -> (3, "编译原理", 1),

    -> (4, "C语言", 2);

Query OK, 4 rows affected (0.00 sec)

Records: 4  Duplicates: 0  Warnings: 0
mysql> delete from press where id=2;

Query OK, 1 row affected (0.00 sec)

mysql> select * from book;

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

| id | name            | press_id |

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

|  1 | 计算机基础      |        1 |

|  2 | 操作系统        |        1 |

|  3 | 编译原理        |        1 |

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

3 rows in set (0.00 sec)

多对多

多对多因为都存在外键的依赖关系,所以建表的时候不会成功。需要第三张表来建立他们的外键关系,如下:

image.png

建表顺序

先建立author表和book表,在建立author2book表
author2book表中有两个外键 author_id 和 book_id

author_id指向author表的id
book_id指向book表的id

实践

mysql> create table author(

    -> id int primary key auto_increment,

    -> name char(20)

    -> );

Query OK, 0 rows affected (0.02 sec)

mysql> create table book(

    -> id int primary key auto_increment,

    -> name char(60)

    -> );

Query OK, 0 rows affected (0.01 sec)
mysql> create table author2book(

    ->     id int primary key 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

    -> );

Query OK, 0 rows affected (0.02 sec)

在author2book表中最使用联合唯一的方式指定主键,即author_id 和 book_id联合成为primary key

create table author2book2(

    id int not null unique auto_increment,

    author_id int not null,

    book_id int not null,

    foreign key(author_id) references author(id)

    on delete cascade

    on update cascade,

    foreign key(book_id) references book(id)

    on delete cascade

    on update cascade,

    primary key(author_id, book_id)

    );

建立author2book表:

可以使用constraint给外键起别名(可选)

image.png

建表时遇到以下错误,原因是最后一行不需要逗号,去掉逗号即可:

image.png

不允许存在同名的外键(因为已经在author2book表中有一个外键的名字叫做fk_author):

image.png
mysql> insert into author(name) value("jack"),("mark");

Query OK, 2 rows affected (0.01 sec)

Records: 2  Duplicates: 0  Warnings: 0

mysql> insert into book(name) value("操作系统"),("C语言");

Query OK, 2 rows affected (0.01 sec)

Records: 2  Duplicates: 0  Warnings: 0

mysql> select * from author;

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

| id | name |

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

|  1 | jack |

|  2 | mark |

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

2 rows in set (0.00 sec)

mysql> select * from book;

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

| id | name         |

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

|  1 | 操作系统     |

|  2 | C语言        |

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

2 rows in set (0.00 sec)

mysql> insert into author2book(author_id, book_id)

    -> value(1, 1),(2,2)

    -> ;

Query OK, 2 rows affected (0.01 sec)

Records: 2  Duplicates: 0  Warnings: 0

mysql> select * from author2book;

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

| id | author_id | book_id |

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

|  1 |         1 |       1 |

|  2 |         2 |       2 |

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

2 rows in set (0.00 sec)

mysql> delete from author2book where author_id=1 and book_id=1;

Query OK, 1 row affected (0.00 sec)

mysql> select * from author2book;

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

| id | author_id | book_id |

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

|  2 |         2 |       2 |

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

1 row in set (0.00 sec)

mysql> select * from author;

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

| id | name |

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

|  1 | jack |

|  2 | mark |

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

2 rows in set (0.00 sec)

mysql> select * from book;

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

| id | name         |

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

|  1 | 操作系统     |

|  2 | C语言        |

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

2 rows in set (0.00 sec)

可见,在多对多关系中,删除author2book表中的记录后,author表和book表的记录并没有删除

一对一

  1. 两张表:学生表和客户表 对于一些教育培训机构而言,客户即使潜在的学生,是一对一的关系
  2. 一对一:一个学生是一个客户,一个客户有可能变成一个学生,即一对一的关系
  3. 关联方式:foreign key+unique
  4. 对于多对一的关系而言:关联表中的外键无需指定为unique,因为存在多个记录的外键指向被关联表的同一个记录
  5. 但对于一对一的关系而言:为了保证两张表记录的一一对应,需要把关联表的外键约束为unique


    image.png
  1. 一定是student来foreign key表customer,这样就保证了:
  2. 学生一定是一个客户,
  3. 客户不一定是学生,但有可能成为一个学生4. create table customer(

 create table customer(
 id int primary key auto_increment,
 name varchar(20) not null,
 qq varchar(10) not null,
 phone char(16) not null
 );
 create table student(
 id int primary key auto_increment,
 class_name varchar(20) not null,
 customer_id int unique, #该字段一定要是唯一的
 foreign key(customer_id) references customer(id) #外键的字段一定要保证unique
 on delete cascade
 on update cascade
 );

实践:

mysql> create table customer(

    -> id int primary key AUTO_INCREMENT,

    -> name char(20)

    -> );

Query OK, 0 rows affected (0.01 sec)
mysql> create table student(

    -> id int primary key AUTO_INCREMENT,

    -> name char(20),

    -> cus_id int unique,

    -> foreign key(cus_id) references customer(id)

    -> on delete cascade

    -> on update cascade

    -> );

Query OK, 0 rows affected (0.01 sec)

和多对一一样,更新或删除时:

删除被关联表的记录,关联表的相关记录也会被删除
删除关联表的记录,被关联表的相关记录不会被删除

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,547评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,399评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,428评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,599评论 1 274
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,612评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,577评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,941评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,603评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,852评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,605评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,693评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,375评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,955评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,936评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,172评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,970评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,414评论 2 342

推荐阅读更多精彩内容