翼度科技»论坛 编程开发 mysql 查看内容

MySQL 约束 用法与案例

4

主题

4

帖子

12

积分

新手上路

Rank: 1

积分
12
目录

表的约束

mysql提供了诸多用于约束数据格式与存储条件的语法,也就是表的约束;
实际业务中,可能会考虑到性能等原因,不一定直接在mysql中约束,而是在上层(写业务代码层面)或逻辑上进行约束;虽然不一定在mysql中使用约束,但我们至少通过掌握mysql中的约束,使能更好地在上层理解和运用约束.
空属性

空属性有两个值:null(默认的)和not null(不为空)
数据库默认字段基本都是字段为空,但是实际开发时,尽可能保证字段不为空,因为数据为空没办法参与运算。
  1. mysql> select null;
  2. +------+
  3. | NULL |
  4. +------+
  5. | NULL |
  6. +------+
  7. 1 row in set (0.00 sec)
  8. mysql> select 1+null;
  9. +--------+
  10. | 1+null |
  11. +--------+
  12. |   NULL |
  13. +--------+
  14. 1 row in set (0.00 sec)
复制代码
非空约束(NOT NULL Constraint)


  • 定义
非空约束是数据库中的一种约束,用于确保某个字段在创建记录时必须有值,不能为空。在MySQL中,这通常通过NOT NULL约束来实现。

  • 用法
在创建或修改表结构时,可以在字段定义后添加NOT NULL约束来指定该字段不能为空。
  1. mysql> create table myclass(
  2.    -> class_name varchar(20) not null,
  3.    -> class_room varchar(10) not null);
  4. Query OK, 0 rows affected (0.02 sec)
  5. mysql> desc myclass;
  6. +------------+-------------+------+-----+---------+-------+
  7. | Field      | Type        | Null | Key | Default | Extra |
  8. +------------+-------------+------+-----+---------+-------+
  9. | class_name | varchar(20) | NO   |     | NULL    |       |
  10. | class_room | varchar(10) | NO   |     | NULL    |       |
  11. +------------+-------------+------+-----+---------+-------+
复制代码
默认值

定义

在MySQL中,默认值(Default Value)是指为表中的列指定的一个特定值,当在插入记录时该列没有提供值时,将自动使用此默认值。默认值可以是数字、字符串、日期或时间等数据类型,具体取决于列的数据类型。
用途


  • 简化数据输入‌:通过为常见或默认值已知的列设置默认值,可以减少在插入记录时需要指定的字段数量。
  • 保证数据一致性‌:对于某些列,可能有一个公认或期望的默认值。通过为这些列设置默认值,可以确保在没有明确指定值时,数据库中的数据仍然保持一致。
  • 避免NULL值‌:在某些情况下,NULL值可能不是最佳选择,因为它们可能表示未知或缺失的数据。通过设置默认值,可以避免在不需要NULL值的情况下使用它们。
语法
  1. mysql> create table t1(
  2.                          name varchar(30) not null,
  3.                          age tinyint unsigned default 18,
  4.                    gender char(1) not null default '男'
  5.                          );
  6.                          
  7. mysql> desc t1;
  8. +--------+---------------------+------+-----+---------+-------+
  9. | Field  | Type                | Null | Key | Default | Extra |
  10. +--------+---------------------+------+-----+---------+-------+
  11. | name   | varchar(30)         | NO   |     | NULL    |       |
  12. | age    | tinyint(3) unsigned | YES  |     | 18      |       |
  13. | gender | char(1)             | NO   |     | 男      |       |
  14. +--------+---------------------+------+-----+---------+-------+
  15. 3 rows in set (0.00 sec)
复制代码
演示


  • 基本用法
  1. mysql> insert into t1(name) values(1);
  2. Query OK, 1 row affected (0.00 sec)
  3. mysql> select * from t1;
  4. +------+------+--------+
  5. | name | age  | gender |
  6. +------+------+--------+
  7. | 1    |   18 | 男     |
  8. +------+------+--------+
  9. 1 row in set (0.00 sec)
复制代码

  • 有缺省值,允许为空时
  1. mysql> insert into t1(name,age,gender) values(2,NULL,'男');
  2. Query OK, 1 row affected (0.00 sec)
  3. mysql> select * from t1;
  4. +------+------+--------+
  5. | name | age  | gender |
  6. +------+------+--------+
  7. | 1    |   18 | 男     |
  8. | 2    | NULL | 男     |
  9. +------+------+--------+
  10. 2 rows in set (0.00 sec)
复制代码
可以主动设置为NULL

  • name约束不允许为空,没有设置缺省值
插入空:
  1. mysql> insert into t1(name, age,gender) values(NULL,19,'女');
  2. ERROR 1048 (23000): Column 'name' cannot be null
复制代码
不插入:
  1. mysql> insert into t1(age,gender) values(19,'女');
  2. ERROR 1364 (HY000): Field 'name' doesn't have a default value
复制代码
再看插入一个没有手动设置约束的,
  1. mysql> alter table t1 add other varchar(10);
  2. Query OK, 0 rows affected (0.06 sec)
  3. mysql> show create table t1 \G;
  4. *************************** 1. row ***************************
  5.        Table: t1
  6. Create Table: CREATE TABLE `t1` (
  7.   `name` varchar(30) NOT NULL,                                                                                        ## 没有默认值
  8.   `age` tinyint(3) unsigned DEFAULT '18',
  9.   `gender` char(1) NOT NULL DEFAULT '男',
  10.   `other` varchar(10) DEFAULT NULL                                                                        ## 自动生成默认值为NULL
  11. ) ENGINE=InnoDB DEFAULT CHARSET=utf8
  12. 1 row in set (0.00 sec)
复制代码
说明:

  • 手动设置约束后,不会再自动生成默认值(新覆盖旧)
  • 如果没有显式插入某字段,则用的是缺省值,但如果该字段没有设置缺省值,则会报错(无法插入).
列描述:comment

没有实际含义,专门用来描述字段,保存在表创建语句中,用来给程序员或DBA来进行了解,相当于一种软性约束(给人看的,让人觉得应该怎么做,不该怎么做,感性约束)。
  1. show create table 表名;                                                                        # desc看不见,只能通过show create查看
复制代码
zerofill

使用int类型时,发现int后面带了一个括号和数字int(N)
  1. mysql> desc t2;
  2. +-------+---------+------+-----+---------+-------+
  3. | Field | Type    | Null | Key | Default | Extra |
  4. +-------+---------+------+-----+---------+-------+
  5. | id    | int(11) | YES  |     | NULL    |       |
  6. +-------+---------+------+-----+---------+-------+
  7. 1 row in set (0.01 sec)
复制代码
这个数字就是zerofill属性的值,不过默认是没有设置zerofill的,没有设置zerofill时是无效的.
语法:

列 int(N) zerofill ;
  1. mysql> alter table t2 modify id int zerofill;
  2. Query OK, 0 rows affected (0.04 sec)
  3. Records: 0  Duplicates: 0  Warnings: 0
  4. mysql> desc t2;
  5. +-------+---------------------------+------+-----+---------+-------+
  6. | Field | Type                      | Null | Key | Default | Extra |
  7. +-------+---------------------------+------+-----+---------+-------+
  8. | id    | int(10) unsigned zerofill | YES  |     | NULL    |       |
  9. +-------+---------------------------+------+-----+---------+-------+
  10. 1 row in set (0.00 sec)
复制代码
效果
  1. mysql> select * from t2;
  2. +------------+
  3. | id         |
  4. +------------+
  5. | 0000000001 |
  6. | 0000000011 |
  7. | 0000000111 |
  8. +------------+
  9. 3 rows in set (0.00 sec)
复制代码
可以发现括号内数字就是id的占位个数,占了11个位;其次,0会填充实际数值不够占位的位,缺多少填充多少

  • 如果N小于数据的位数
  1. mysql> delete from t2 ;
  2. Query OK, 3 rows affected (0.00 sec)
  3. mysql> alter table t2 modify id int(4) zerofill;
  4. Query OK, 0 rows affected (0.00 sec)
  5. Records: 0  Duplicates: 0  Warnings: 0
  6. mysql> insert into t2 values(1);
  7. Query OK, 1 row affected (0.00 sec)
  8. mysql> insert into t2 values(11);
  9. Query OK, 1 row affected (0.00 sec)
  10. mysql> insert into t2 values(111);
  11. Query OK, 1 row affected (0.00 sec)
  12. mysql> insert into t2 values(1111);
  13. Query OK, 1 row affected (0.00 sec)
  14. mysql> insert into t2 values(11111);
  15. Query OK, 1 row affected (0.01 sec)
  16. mysql> insert into t2 values(111111);
  17. Query OK, 1 row affected (0.00 sec)
  18. mysql> insert into t2 values(1111111);
  19. Query OK, 1 row affected (0.00 sec)
  20. mysql> select * from t2;
  21. +---------+
  22. | id      |
  23. +---------+
  24. |    0001 |
  25. |    0011 |
  26. |    0111 |
  27. |    1111 |
  28. |   11111 |
  29. |  111111 |
  30. | 1111111 |
  31. +---------+
  32. 7 rows in set (0.00 sec)
复制代码
够N则没有动作,小于N位会补上足够的0,是一种"不够才会发生"的行为

  • 说明: zerofill不会影响数据的原始类型,只是在显示时以0占位填充方式显示;
  • 默认生成的zerofile数字
默认有符号int是11,无符号是10,因为int类类型的数据范围是40亿和20亿,十进制一共10个数字,所以无符号是10;而有符号还有一个要用于表示符号,因此有符号是11.
主键 (primary key)

用来唯一的约束该字段里面的数据,不能重复不能为空,一张表中最多只能有一个主键(唯一标识);
主键所在的列通常是整数类型。
语法
  1. mysql> create table if not exists test_key(id int primary key comment '主键', name varchar(128));
  2. Query OK, 0 rows affected (0.02 sec)
  3. mysql> desc test_key;
  4. +-------+--------------+------+-----+---------+-------+
  5. | Field | Type         | Null | Key | Default | Extra |
  6. +-------+--------------+------+-----+---------+-------+
  7. | id    | int(11)      | NO   | PRI | NULL    |       |
  8. | name  | varchar(128) | YES  |     | NULL    |       |
  9. +-------+--------------+------+-----+---------+-------+
  10. 2 rows in set (0.00 sec)
复制代码
表结构中 key列多了 PRI 属性
查看标准定义语句
  1. mysql> show create table test_key\G;
  2. *************************** 1. row ***************************
  3.        Table: test_key
  4. Create Table: CREATE TABLE `test_key` (
  5.   `id` int(11) NOT NULL COMMENT '主键',                                                                        ##  自动加上了not null
  6.   `name` varchar(128) DEFAULT NULL,
  7.   PRIMARY KEY (`id`)                                                                                                                                                ## 主键在字段下方定义了
  8. ) ENGINE=InnoDB DEFAULT CHARSET=utf8
  9. 1 row in set (0.00 sec)
复制代码
因此也可以这样定义
  1. mysql> create table test(id int, primary key(id));
  2. Query OK, 0 rows affected (0.01 sec)
  3. mysql> desc test;
  4. +-------+---------+------+-----+---------+-------+
  5. | Field | Type    | Null | Key | Default | Extra |
  6. +-------+---------+------+-----+---------+-------+
  7. | id    | int(11) | NO   | PRI | NULL    |       |
  8. +-------+---------+------+-----+---------+-------+
  9. 1 row in set (0.00 sec)
复制代码
基本效果

唯一标识,不能重复
  1. mysql> insert into test_key values(1,'zhang');
  2. Query OK, 1 row affected (0.00 sec)
  3. mysql> insert into test_key values(1,'li');
  4. ERROR 1062 (23000): Duplicate entry '1' for key 'PRIMARY'
复制代码
删除主键
  1. mysql> alter table test drop primary key;
  2. Query OK, 0 rows affected (0.04 sec)
  3. Records: 0  Duplicates: 0  Warnings: 0
  4. mysql> desc test;
  5. +-------+---------+------+-----+---------+-------+
  6. | Field | Type    | Null | Key | Default | Extra |
  7. +-------+---------+------+-----+---------+-------+
  8. | id    | int(11) | NO   |     | NULL    |       |
  9. +-------+---------+------+-----+---------+-------+
  10. 1 row in set (0.00 sec)
复制代码
追加主键
  1. mysql> alter table test add primary key(id);
  2. Query OK, 0 rows affected (0.03 sec)
  3. Records: 0  Duplicates: 0  Warnings: 0
  4. mysql> desc test;
  5. +-------+---------+------+-----+---------+-------+
  6. | Field | Type    | Null | Key | Default | Extra |
  7. +-------+---------+------+-----+---------+-------+
  8. | id    | int(11) | NO   | PRI | NULL    |       |
  9. +-------+---------+------+-----+---------+-------+
  10. 1 row in set (0.00 sec)
复制代码
注意,添加主键时,需要先保证该字段没有重复的数据出现(因此最好是在 建表前/插入数据前 把主键确定下来)
  1. mysql> alter table test drop primary key;                                                                                                ## 先删除主键
  2. Query OK, 0 rows affected (0.33 sec)
  3. Records: 0  Duplicates: 0  Warnings: 0
  4. mysql> insert into test values(1);                                                                                                                        ## 插入两个重复数据
  5. Query OK, 1 row affected (0.01 sec)
  6. mysql> insert into test values(1);
  7. Query OK, 1 row affected (0.01 sec)
  8. mysql> alter table test add primary key(id);
  9. ERROR 1062 (23000): Duplicate entry '1' for key 'PRIMARY'                                ## 添加主键
  10. ## 翻译: 重复 条目 1 对于主键
复制代码
复合主键

主键不仅仅能设置一个字段,还能多个字段构成一个主键
语法

复合主键只能使用单独定义主键的方式定义
  1. mysql> create table pick_course(                                                                                                        ## 选课表(测试用,不一定符合实际业务)
  2.         sid int unsigned comment '学生学号',
  3.         cid int unsigned comment'课程号',
  4.         score tinyint unsigned, primary key(sid,cid)
  5.         );
  6. Query OK, 0 rows affected (0.01 sec)
  7. mysql> desc pick_course;
  8. +-------+---------------------+------+-----+---------+-------+
  9. | Field | Type                | Null | Key | Default | Extra |
  10. +-------+---------------------+------+-----+---------+-------+
  11. | sid   | int(10) unsigned    | NO   | PRI | NULL    |       |
  12. | cid   | int(10) unsigned    | NO   | PRI | NULL    |       |
  13. | score | tinyint(3) unsigned | YES  |     | NULL    |       |
  14. +-------+---------------------+------+-----+---------+-------+
  15. 3 rows in set (0.00 sec)
复制代码
这种两个以上主键标识的就是复合主键,复合主键的性质和一般主键是一样的,保证列复合结果不重复即可
自增长 auto_increment

auto_increment:当对应的字段,不给值,会自动的被系统触发,系统会从当前字段中已经有的最大值
+1操作,得到一个新的不同的值。要搭配主键使用,作为逻辑主键。
自增长的特点:

  • 任何一个字段要做自增长,前提是本身是一个索引(key一栏有值)
  • 自增长字段必须是整数
  • 一张表最多只能有一个自增长
  • 默认从1开始
基本语法
  1. mysql> create table t3(id int auto_increment, name varchar(32), primary key(id)  );
  2. Query OK, 0 rows affected (0.01 sec)
复制代码
验证自增长属性的特点

自增长基准值变化

建个带自增长属性的表
  1. mysql> create table t3(id int auto_increment, name varchar(32), primary key(id)  );
  2. Query OK, 0 rows affected (0.01 sec)mysql> show create table t3\G;*************************** 1. row ***************************       Table: t3Create Table: CREATE TABLE `t3` (  `id` int(11) NOT NULL AUTO_INCREMENT,  `name` varchar(32) DEFAULT NULL,  PRIMARY KEY (`id`)) ENGINE=InnoDB DEFAULT CHARSET=utf81 row in set (0.00 sec)
复制代码
给表添加两个数据,全列插入
  1. mysql> insert into t3 (id,name) values(10,'a');
  2. Query OK, 1 row affected (0.00 sec)
  3. mysql> insert into t3 (id,name) values(1,'a');
  4. Query OK, 1 row affected (0.00 sec)
  5. mysql> select * from t3;
  6. +----+------+
  7. | id | name |
  8. +----+------+
  9. |  1 | a    |
  10. | 10 | a    |
  11. +----+------+
  12. 2 rows in set (0.00 sec)
复制代码
此时查看表的结构
  1. mysql> show create table t3\G;
  2. *************************** 1. row ***************************
  3.        Table: t3
  4. Create Table: CREATE TABLE `t3` (
  5.   `id` int(11) NOT NULL AUTO_INCREMENT,
  6.   `name` varchar(32) DEFAULT NULL,
  7.   PRIMARY KEY (`id`)
  8. ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8                ## 多了一个属性 auto_increment=11
  9. 1 row in set (0.00 sec)
复制代码
再插入一个数据,只对name插入,让id自增长
  1. mysql> insert into t3 (name) values('b');
  2. Query OK, 1 row affected (0.00 sec)
  3. mysql> select * from t3;
  4. +----+------+
  5. | id | name |
  6. +----+------+
  7. |  1 | a    |
  8. | 10 | a    |
  9. | 11 | b    |
  10. +----+------+
  11. 3 rows in set (0.00 sec)
  12. mysql> show create table t3\G;
  13. *************************** 1. row ***************************
  14.        Table: t3
  15. Create Table: CREATE TABLE `t3` (
  16.   `id` int(11) NOT NULL AUTO_INCREMENT,
  17.   `name` varchar(32) DEFAULT NULL,
  18.   PRIMARY KEY (`id`)
  19. ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8
  20. 1 row in set (0.00 sec)
复制代码
插入一个比较小的数据,全列插入
  1. mysql> insert into t3 values(2,'c');
  2. Query OK, 1 row affected (0.00 sec)
  3. mysql> select * from t3 ;
  4. +----+------+
  5. | id | name |
  6. +----+------+
  7. |  1 | a    |
  8. |  2 | c    |
  9. | 10 | a    |
  10. | 11 | b    |
  11. +----+------+
  12. 4 rows in set (0.00 sec)
  13. mysql> show create table t3\G;
  14. *************************** 1. row ***************************
  15.        Table: t3
  16. Create Table: CREATE TABLE `t3` (
  17.   `id` int(11) NOT NULL AUTO_INCREMENT,
  18.   `name` varchar(32) DEFAULT NULL,
  19.   PRIMARY KEY (`id`)
  20. ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8                                ## 自增长属性不变
  21. 1 row in set (0.00 sec)
复制代码
自增长属性没有发生变化,因此,自增长值是一个max()值,有比他大的就能覆盖,否则不变或自增

  • 删除最大元素也不会影响到自增长值
  1. mysql> delete from t3 where id=11;
  2. Query OK, 1 row affected (0.01 sec)
  3. mysql> show create table t3\G;
  4. *************************** 1. row ***************************
  5.        Table: t3
  6. Create Table: CREATE TABLE `t3` (
  7.   `id` int(11) NOT NULL AUTO_INCREMENT,
  8.   `name` varchar(32) DEFAULT NULL,
  9.   PRIMARY KEY (`id`)
  10. ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=utf8                                ## 自增长属性不变
  11. 1 row in set (0.00 sec)
复制代码
搭配主键
  1. mysql> create table t5 (id int auto_increment);
  2. ERROR 1075 (42000): Incorrect table definition; there can be only one auto column and it must be defined as a key
  3. ## 不正确的表定义; (指代)只能有(只能只有)一个自动列;且必须定义成主键之类的
复制代码
语法


  • 默认,不指定缺省值创建
  1. mysql> create table t3(
  2.         id int auto_increment,
  3.         name varchar(32),
  4.         primary key(id)
  5.         );
  6. Query OK, 0 rows affected (0.01 sec)
复制代码

  • 带自增长缺省值创建(注意写在列定义结束之后)
  1. mysql> create table t4(
  2.         id int primary key  auto_increment,
  3.         name varchar(32)
  4.         )auto_increment=50;
  5. Query OK, 0 rows affected (0.01 sec)
  6. mysql> show create table t4\G;
  7. *************************** 1. row ***************************
  8.        Table: t4
  9. Create Table: CREATE TABLE `t4` (
  10.   `id` int(11) NOT NULL AUTO_INCREMENT,
  11.   `name` varchar(32) DEFAULT NULL,
  12.   PRIMARY KEY (`id`)
  13. ) ENGINE=InnoDB AUTO_INCREMENT=50 DEFAULT CHARSET=utf8
  14. 1 row in set (0.00 sec)
复制代码
函数last_insert_id()

在插入后获取上次插入的值(批量插入获取的是第一个值);
搭配auto_increment时,得到的就是自增长的值
  1. mysql > select last_insert_id();
  2. +------------------+
  3. | last_insert_id() |
  4. +------------------+
  5. |                1 |
  6. +------------------+
复制代码
后续用例补充...
浅谈索引

索引:
在关系数据库中,索引是一种单独的、物理的对数据库表中一列或多列的值进行排序的一种存储结构,它是某个表中一列或若干列值的集合和相应的指向表中物理标识这些值的数据页的逻辑指针清单。
索引的作用相当于图书的目录,可以根据目录中的页码快速找到所需的内容。
索引提供指向存储在表的指定列中的数据值的指针,然后根据您指定的排序顺序对这些指针排序。
数据库使用索引以找到特定值,然后顺指针找到包含该值的行。这样可以使对应于表的SQL语句执行得
更快,可快速访问数据库表中的特定信息。
唯一键 (unique key)

一张表中有往往有很多字段需要唯一性,数据不能重复,但是一张表中只能有一个主键:唯一键就可以解决表中有多个字段需要唯一性约束的问题。
唯一键的本质和主键差不多,唯一键允许为空,而且可以多个为空,空字段不做唯一性比较。
理解唯一键


  • 面向对象思想中,表的字段等价于对象的属性(表的各类属性 == 对象的属性), 描述表就相当于描述对象
  • 对象有众多属性,而众多属性中一定存在相当一部分是唯一的,这些唯一的属性就是表的唯一键;
    对于主键,用于标识一个对象(表),选择主键就是在众多唯一属性中选择一个作为主键;(这个唯一属性就是唯一键)
与主键的差异

区别:唯一键可以为空(默认),也可以设置为非空(这样就和主键很像了)
关于唯一键和主键的区别:
我们可以简单理解成,主键更多的是标识唯一性的。而唯一键更多的是保证在业务上,不要和别的信息出现重复。乍一听好像没啥区别
举一个例子
假设一个场景
比如在公司,我们需要一个员工管理系统,系统中有一个员工表,员工表中有两列信息,一个身份证号码,一个是员工工号,我们可以选择身份号码作为主键。
而我们设计员工工号的时候,需要一种约束:而所有的员工工号都不能重复。
具体指的是在公司的业务上不能重复,我们设计表的时候,需要这个约束,那么就可以将员工工号设计成为唯一键。
一般而言,我们建议将主键设计成为和当前业务无关的字段,这样,当业务调整的时候,我们可以尽量不会对主键做过大的调整。
语法
  1. mysql> create table t6(id int unique);
  2. Query OK, 0 rows affected (0.02 sec)
  3. mysql> create table t7(id int, unique(id));
  4. Query OK, 0 rows affected (0.01 sec)
  5. mysql> create table t8(id int unique key);
  6. Query OK, 0 rows affected (0.02 sec)
复制代码
  1. mysql> show create table t6\G;
  2. *************************** 1. row ***************************
  3.        Table: t6
  4. Create Table: CREATE TABLE `t6` (
  5.   `id` int(11) DEFAULT NULL,
  6.   UNIQUE KEY `id` (`id`)
  7. ) ENGINE=InnoDB DEFAULT CHARSET=utf8
  8. 1 row in set (0.00 sec)
  9. ERROR:
  10. No query specified
复制代码
外键(Foreign Key)

外键外腱,和动物跟腱一样,系联不同对象的跟腱
表与表之间的关联 表与表之间的约束

定义‌:
外键是数据库中的一个字段,它是另一个表的主键的引用。外键用于在两个表之间建立和维护引用完整性。它确保了表中的数据与另一个表中的数据相关联,并且保持一致性和准确性。
作用‌:

  • 维护数据一致性‌:通过外键约束,可以确保一个表中的数据引用另一个表的数据时,引用的数据是存在且有效的。这有助于防止无效或孤立的数据记录。
  • 实现数据表之间的关联‌:外键使得数据库中的表能够相互关联,从而支持更复杂的查询和操作,如连接查询(JOIN)。
  • 支持级联操作‌:外键约束还支持级联操作,如级联更新和级联删除。当对一个表的主键进行更新或删除时,可以自动地更新或删除另一个表中所有引用该主键的外键记录。
重要性‌:
外键是数据库设计中不可或缺的一部分,它们帮助开发者构建和维护数据库的完整性和一致性。通过外键,我们可以确保数据的准确性,防止数据冗余,并优化数据库的查询性能。此外,外键还有助于实现数据库表之间的逻辑关系,使得数据库的结构更加清晰和易于理解。
主表与从表

主表(Parent Table)‌:
在数据库中,主表通常包含其他表所引用的主键。换句话说,如果一个表的主键被其他表的外键所引用,那么这个表就被称为主表。主表在数据库关系中扮演着核心的角色,因为它包含了其他表可能需要的参照数据。
从表(Child Table 或 Dependent Table)‌:
从表,也称为子表或依赖表,是包含外键的表。外键是指向另一个表(即主表)主键的字段。从表通过外键与主表建立关联,从而实现数据的引用和完整性约束。
示例‌:
假设我们有两个表:students(学生表)和courses(课程表)。students表有一个student_id作为主键,而courses表有一个course_id作为主键。如果我们想要记录每个学生选修的课程,我们可以在courses表中添加一个student_id作为外键,它引用了students表的student_id主键。
其中students表就是主表,courses是从表;因为courses表引用了students表的主键;
语法

以学生信息,班级信息,以及学生-班级的关系为例,
首先需要有一张主表(class)
  1. mysql> create table class(id tinyint unsigned primary key, name varchar(32) unique key);
  2. Query OK, 0 rows affected (0.02 sec)
复制代码
默认外键(自动生成外键名) -- 从表(student)
  1. mysql> create table student(id char(12), name varchar(32), telphone varchar(32), class_id tinyint unsigned,primary key(id),unique key(telphone),foreign key(class_id) references class (id));
  2. Query OK, 0 rows affected (0.02 sec)
  3. mysql> show create table student\G;
  4. *************************** 1. row ***************************
  5.        Table: student
  6. Create Table: CREATE TABLE `student` (
  7.   `id` char(12) NOT NULL,
  8.   `name` varchar(32) DEFAULT NULL,
  9.   `telphone` varchar(32) DEFAULT NULL,
  10.   `class_id` tinyint(3) unsigned DEFAULT NULL,
  11.   PRIMARY KEY (`id`),
  12.   UNIQUE KEY `telphone` (`telphone`),
  13.   KEY `class_id` (`class_id`),
  14.   CONSTRAINT `student_ibfk_1` FOREIGN KEY (`class_id`) REFERENCES `class` (`id`)
  15. ) ENGINE=InnoDB DEFAULT CHARSET=utf8
  16. 1 row in set (0.00 sec)
  17. ERROR:
  18. No query specified
复制代码
自定义外键名(一般默认就够了)
  1. mysql> create table student(
  2.         id char(12),
  3.         name varchar(32),
  4.         telphone varchar(32),
  5.         class_id tinyint unsigned,
  6.         primary key(id),
  7.         unique key(telphone),
  8.         constraint my_foreign_key_name foreign key(class_id) references class (id)
  9.         );
  10. Query OK, 0 rows affected (0.02 sec)
  11. mysql> show create table student\G;
  12. *************************** 1. row ***************************
  13.        Table: student
  14. Create Table: CREATE TABLE `student` (
  15.   `id` char(12) NOT NULL,
  16.   `name` varchar(32) DEFAULT NULL,
  17.   `telphone` varchar(32) DEFAULT NULL,
  18.   `class_id` tinyint(3) unsigned DEFAULT NULL,
  19.   PRIMARY KEY (`id`),
  20.   UNIQUE KEY `telphone` (`telphone`),
  21.   KEY `my_foreign_key_name` (`class_id`),
  22.   CONSTRAINT `my_foreign_key_name` FOREIGN KEY (`class_id`) REFERENCES `class` (`id`)
  23. ) ENGINE=InnoDB DEFAULT CHARSET=utf8
  24. 1 row in set (0.00 sec)
复制代码
实用:谁引用谁,被引用的对象就是主表,引用方是从表
综合案例

有一个商店的数据,记录客户及购物情况,有以下三个表组成:

  • 商品goods(商品编号goods_id,商品名goods_name, 单价unitprice, 商品类别category,  供应商
    provider)
  • 客户customer(客户号customer_id,姓名name,住址address,邮箱email,性别sex,身份证card_id)
  • 购买purchase(购买订单号order_id,客户号customer_id,商品号goods_id,购买数量nums)
要求:

  • 每个表的主外键
  • 客户的姓名不能为空值
  • 邮箱不能重复
  • 客户的性别(男,女)
  1. -- 创建数据库
  2. create database if not exists bit32mall
  3. default character set utf8 ;
  4. -- 选择数据库
  5. use bit32mall;
  6. -- 创建数据库表
  7. -- 商品
  8. create table if not exists goods
  9. (
  10.    goods_id  int primary key auto_increment comment '商品编号',
  11.    goods_name varchar(32) not null comment '商品名称',
  12.    unitprice  int  not null default 0  comment '单价,单位分',
  13.    category  varchar(12) comment '商品分类',
  14.    provider  varchar(64) not null comment '供应商名称'
  15. );
  16. -- 客户
  17. create table if not exists customer
  18. (
  19.    customer_id  int primary key auto_increment comment '客户编号',
  20.    name varchar(32) not null comment '客户姓名',
  21.    address  varchar(256)  comment '客户地址',
  22.    email  varchar(64)  unique key comment '电子邮箱',
  23.        sex  enum('男','女') not null comment '性别',
  24.    card_id char(18) unique key comment '身份证'
  25. );
  26. -- 购买
  27. create table if not exists purchase
  28. (
  29.    order_id  int primary key auto_increment comment '订单号',
  30.    customer_id int comment '客户编号',
  31.    goods_id  int  comment '商品编号',  
  32.    nums  int  default 0 comment '购买数量',
  33.    foreign key (customer_id) references customer(customer_id),
  34.    foreign key (goods_id) references goods(goods_id)
  35. );
复制代码
来源:https://www.cnblogs.com/DSCL-ing/p/18425445
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

举报 回复 使用道具