MySQL之字段约束条件

一、MySQL之字段约束条件

  1. 1.unsigned 无符号
  2. unsigned 为非负数,可以用此类增加数据长度
  3. egtinyint最大是127,那tinyint unsigned最大可以到127 * 2
  4. int最大是65535,那int unsigned最大可以到65535 * 2
  5. create table t1(id tinyint unsigned);
  6. 2.zerofill 零填充
  7. 通俗的意思就是补零
  8. create table t1(id int(3) zerofill)
  9. 3.not null 非空
  10. ps:所有字段类型不加约束条件的情况下默认都可以为空
  11. 在值里面写空字符串也算个字符,不为空
  12. create table t1(id int not null,name varchar(16));
  13. 4.default 默认值
  14. # 默认值遵循的原则就是有值就用传的值,没有值就用默认值
  15. create table t1(id int,name varchar(16) not null default 'jason');
  16. 5.unique 唯一值
  17. MySQL通过给字段添加唯一性约束来设置行值唯一,设置的字段是不会重复的,是唯一的
  18. 单列唯一:
  19. create table t1(id int unique,name varchar(16));
  20. insert into t4 values(1,'jia'),(2,'jason');
  21. 再插入相同的字段就会报错,原因是设置了唯一索引,不允许重复添加
  22. 联合唯一:
  23. mysql> create table t5(
  24. -> id int,
  25. -> ip varchar(32),
  26. -> port int,
  27. -> unique(ip,port)
  28. -> );
  29. mysql> insert into t5 values(1,'127.0.0.1',8080),(2,'127.0.0.1',8081),(3,'127.0.0.2',8080);
  30. mysql> insert into t5 values(4,'127.0.0.1',8080);
  31. 再次插入违反了唯一性,就报错

二、字段约束条件之主键

1.单从约束层面上而言主键相当于not null + unique(非空且唯一)

  1. mysql> create table t6(
  2. -> id int primary key,
  3. -> name varchar(16)
  4. -> );
  5. mysql> insert into t6(name) values('jason');
  6. ERROR 1364 (HY000): Field 'id' doesn't have a default value
  7. # 非空且唯一,主键不能为空,而且唯一,已经有值了的话再添加值会报错的
  8. mysql> insert into t6 values(1,'jason');
  9. ERROR 1062 (23000): Duplicate entry '1' for key 'PRIMARY'

2.InnoDB存储引擎规定一张表必须有且只有一个主键

  1. 1.当表中没有主键也没有其他非空唯一的字段情况下:
  2. InnoDB会采用一个隐藏的字段作为表的主键,隐藏意味着无法使用,基于该表的数据查询只能一行一行的查询,速度特别慢的
  3. 2.当表中没有主键但是有其他的非空且唯一的字段,那么会从从上往下的第一个字段自动升级为主键
  1. mysql> create table t7(
  2. -> id int,
  3. -> age int not null unique,
  4. -> phone bigint not null unique,
  5. -> birth int not null unique,
  6. -> height int not null unique
  7. -> );
  8. mysql> desc t7;
  9. +--------+------------+------+-----+---------+-------+
  10. | Field | Type | Null | Key | Default | Extra |
  11. +--------+------------+------+-----+---------+-------+
  12. | id | int(11) | YES | | NULL | |
  13. | age | int(11) | NO | PRI | NULL | |
  14. | phone | bigint(20) | NO | UNI | NULL | |
  15. | birth | int(11) | NO | UNI | NULL | |
  16. | height | int(11) | NO | UNI | NULL | |
  17. +--------+------------+------+-----+---------+-------+

3.创建表的时候都应该有一个ID字段,并且该字段作为主键

  1. 单列主键:
  2. mysql> create table t8(
  3. -> id int primary key,
  4. -> name varchar(16),
  5. -> age int);
  6. Query OK, 0 rows affected (0.01 sec)
  7. 联合主键:
  8. mysql> create table t9(
  9. -> u_id int,
  10. -> g_id int,
  11. -> primary key(u_id,g_id));
  12. Query OK, 0 rows affected (0.04 sec)

三、auto_increate自增

  1. 自增一张表只能出现一次
  2. mysql> create table t10(
  3. -> id int primary key auto_increment,
  4. -> name varchar(16)
  5. -> );
  6. Query OK, 0 rows affected (0.02 sec)
  7. mysql> insert into t10(name) values('jia'),('jason'),('wei');
  8. mysql> select * from t10;
  9. +----+-------+
  10. | id | name |
  11. +----+-------+
  12. | 1 | jia |
  13. | 2 | jason |
  14. | 3 | wei |
  15. +----+-------+
  1. 自增不会因为数据的删除而回退,永远自增往前,按照前一个ID的数继续往后自增,按照更大的往前自增
  2. # 如果想要重置主键的话,想要格式化表,用到truncate 表名:删除表数据并重置主键值
  3. mysql> truncate t10;

四、字段约束条件之外键

1.外键前戏

1.若需要创建一张员工表
id name age dep_name dep_desc
1 jia 18 学习部 检查学习
2 jason 19 纪检部 检查学风
3 wei 18 宿管部 检查卫生
4 xin 22 学习部 检查学习
5 kevin 21 纪检部 检查学风
  1. 上表的缺陷:
  2. 1.表的结构不清晰,不知道是员工表还是部门表
  3. 2.字段数据反复存取,浪费存储空间
  4. 3.表的扩展性极差,牵一发动全身,效率极低
2.拆表,将表拆分为员工表和部门表
  1. 添加员工部门编号字段填写部门数据的主键值,外键字段,专门用于记录表与表之间的数据关系

2.外键字段的创建

  1. mysql> create table dep(
  2. -> id int primary key auto_increment,
  3. -> dep_name varchar(32),
  4. -> dep_desc varchar(32)
  5. -> );
  6. Query OK, 0 rows affected (0.02 sec)
  7. mysql> create table emp(
  8. -> id int primary key auto_increment,
  9. -> name varchar(32),
  10. -> age int,
  11. -> dep_id int,
  12. -> foreign key(dep_id) references dep(id)
  13. -> );
  14. Query OK, 0 rows affected (0.02 sec)
  1. 1.创建表的时候一定要先创建被关联表
  2. 2.录入数据的时候一定先录入被关联表
  3. 3.修改数据的时候外键字段无法修改和删除
  4. 级联更新、级联删除:被关联数据一旦变动,关联的数据同步变动
  5. on update cascade # 级联更新
  6. on delete cascade # 级联删除

五、表之间的关系

  1. 关系的判断

    1. 关系总共有四种:
    2. 一对多
    3. 多对多
    4. 一对一
    5. 没有关系

2.一对多关系

  1. 员工表和部门表:
  2. 1.站员工角度
  3. 一个员工可以对应多个部门吗(不可以)
  4. 2.站在部门的角度
  5. 一个部门能否对应多名员工(可以)
  6. 员工部和部门部的关系就是一对多的关系
  1. mysql> create table dep(
  2. -> id int primary key auto_increment,
  3. -> dep_name varchar(32),
  4. -> dep_desc varchar(32)
  5. -> );
  6. Query OK, 0 rows affected (0.02 sec)
  7. mysql> create table emp(
  8. -> id int primary key auto_increment,
  9. -> name varchar(32),
  10. -> age int,
  11. -> dep_id int,
  12. -> foreign key(dep_id) references dep(id)
  13. - > on update cascade
  14. - > on delete cascade
  15. -> );
  16. Query OK, 0 rows affected (0.02 sec)

2.多对多关系

  1. 书籍表和作者表:
  2. 1.站书籍角度
  3. 一个书籍可以对应多个作者吗(可以)
  4. 2.站在作者的角度
  5. 一个书籍能否对应多个作者(可以)
  6. 书籍和作者的关系就是多对多的关系
  1. mysql> create table book(
  2. -> id int primary key auto_increment,
  3. -> title varchar(32),
  4. -> price float(6,2)
  5. -> );
  6. Query OK, 0 rows affected (0.02 sec)
  7. mysql> create table author(
  8. -> id int primary key auto_increment,
  9. -> name varchar(16),
  10. -> phone bigint
  11. -> );
  12. Query OK, 0 rows affected (0.02 sec)
  13. mysql> create table book_author(
  14. -> id int primary key auto_increment,
  15. -> book_id int,
  16. -> foreign key(book_id) references book(id)
  17. -> on update cascade
  18. -> on delete cascade,
  19. -> author_id int,
  20. -> foreign key(author_id) references author(id)
  21. -> on update cascade
  22. -> on delete cascade
  23. -> );
  24. Query OK, 0 rows affected (0.01 sec)

3.一对一关系

  1. 用户表和用户详情表:
  2. 1.站用户角度
  3. 一个用户可以对应多个用户详情吗(不可以)
  4. 2.站在作者的角度
  5. 一个用户能否对应多个用户详情(不可以)
  6. 用户和用户详情的关系就是一对一的关系
  1. mysql> create table userdetail(
  2. -> id int primary key auto_increment,
  3. -> phone bigint
  4. -> );
  5. Query OK, 0 rows affected (0.02 sec)
  6. mysql> create table user(
  7. -> id int primary key auto_increment,
  8. -> name varchar(32),
  9. -> detail_id int unique,
  10. -> foreign key(detail_id) references userdetail(id)
  11. -> on update cascade
  12. -> on delete cascade
  13. -> );
  14. Query OK, 0 rows affected (0.01 sec)

作业

  1. 服务器表与应用程序表
  2. 课程表与班级表
  3. 学生表与班级表
  4. 老师表与课程表
  5. 书籍表与出版社表
  1. 服务器表与应用程序表
  2. 1.一个服务器可以服务多个程序
  3. 2.一个程序只需要一个服务器服务就好了
  4. 关系:一对多
  5. mysql> create table the_servser(
  6. -> id int primary key auto_increment,
  7. -> name varchar(16)
  8. -> );
  9. Query OK, 0 rows affected (0.01 sec)
  10. mysql> create table program(
  11. -> id int primary key auto_increment,
  12. -> name varchar(16),
  13. -> server_id int,
  14. -> foreign key(server_id) references the_servser(id)
  15. -> on update cascade
  16. -> on delete cascade
  17. -> );
  18. Query OK, 0 rows affected (0.02 sec)
  1. 课程表与班级表
  2. 1.一个课程对应多个班级
  3. 2.一个班级对应多个课程
  4. 多对多
  5. mysql> create table course(
  6. -> id int primary key auto_increment,
  7. -> name varchar(32)
  8. -> );
  9. Query OK, 0 rows affected (0.01 sec)
  10. mysql> create table class(
  11. -> id int primary key auto_increment,
  12. -> name varchar(32)
  13. -> );
  14. Query OK, 0 rows affected (0.02 sec)
  15. mysql> create table c_course(
  16. -> id int primary key auto_increment,
  17. -> c_id int,
  18. -> foreign key(c_id) references class(id)
  19. -> on update cascade
  20. -> on delete cascade,
  21. -> course_id int,
  22. -> foreign key(course_id) references course(id)
  23. -> on update cascade
  24. -> on delete cascade
  25. -> );
  26. Query OK, 0 rows affected (0.02 sec)
  1. 学生表与班级表
  2. 1.一个学生对应一个班级
  3. 2.一个班级对应多个学生
  4. 一对多
  5. mysql> create table student(
  6. -> id int primary key auto_increment,
  7. -> name varchar(16)
  8. -> );
  9. Query OK, 0 rows affected (0.02 sec)
  10. mysql> create table class1(
  11. -> id int primary key auto_increment,
  12. -> name varchar(16),
  13. -> s_id int,
  14. -> foreign key(s_id) references student(id)
  15. -> on update cascade
  16. -> on delete cascade
  17. -> );
  18. Query OK, 0 rows affected (0.01 sec)
  1. 老师表与课程表
  2. 1.多个老师对应多个课程
  3. 2.多个课程对应多个老师
  4. 多对多
  5. mysql> create table teacher(
  6. -> id int primary key auto_increment,
  7. -> name varchar(16)
  8. -> );
  9. Query OK, 0 rows affected (0.01 sec)
  10. mysql> create table course1(
  11. -> id int primary key auto_increment,
  12. -> name varchar(16)
  13. -> );
  14. Query OK, 0 rows affected (0.01 sec)
  15. mysql> create table t_course(
  16. -> id int primary key auto_increment,
  17. -> c_id int,
  18. -> foreign key(c_id) references course1(id)
  19. -> on update cascade
  20. -> on delete cascade
  21. -> t_id int,
  22. -> foreign key(t_id) references teacher(id)
  23. -> on update cascade
  24. -> on delete cascade
  25. -> );
  26. Query OK, 0 rows affected (0.02 sec)
  1. 书籍表与出版社表
  2. 1.一个书籍对应多个出版社
  3. 2.一个出版社出版多个数据
  4. 多对多
  5. mysql> create table book1(
  6. -> id int primary key auto_increment,
  7. -> name varchar(32)
  8. -> );
  9. Query OK, 0 rows affected (0.02 sec)
  10. mysql> create table press(
  11. -> id int primary key auto_increment,
  12. -> name varchar(16)
  13. -> );
  14. Query OK, 0 rows affected (0.01 sec)
  15. mysql> create table b_press(
  16. -> id int primary key auto_increment,
  17. -> b_id int,
  18. -> foreign key(b_id) references book1(id)
  19. -> on update cascade
  20. -> on delete cascade,
  21. -> p_id int,
  22. -> foreign key(p_id) references press(id)
  23. -> on update cascade
  24. -> on delete cascade
  25. -> );
  26. Query OK, 0 rows affected (0.05 sec)

MySQL之字段约束条件的更多相关文章

  1. mysql数据库(字段约束条件)

    什么是字段约束 字段约束就是将字段的内容定一个规则,我们要按照规则办事 约束 描述 关键字 非空约束 限制该字段的数据不能为null not null 唯一约束 保证该字段的所有数据都是唯一.不重复的 ...

  2. python之路35 MySQL 3 字段的约束条件 外键关系

    字段约束条件 无符号.零填充 unsigned id int unsigned zerofill id int(5) zerofill 非空 create table t1( id int, name ...

  3. mysql text字段判断是否为空

    mysql text字段判断是否为空 mysql text字段为空select * from `tableName` where `textField` is null or `textField` ...

  4. 修改MySQL中字段的类型和长度

    MySQL修改字段类型的命令是: mysql> alter table 表名 modify column 字段名 类型; 假设在MySQL中有一个表为:address,有一个字段为city 初始 ...

  5. MySQL添加字段和删除字段

    MySQL添加字段应该如何实现呢?这是很多刚刚接触MySQL数据库的新人都提到过的问题,下面就为您介绍MySQL添加字段和删除字段的方法,希望对您能有所启迪. MySQL添加字段: alter tab ...

  6. PDO 查询mysql返回字段整型变为String型解决方法

    PDO 查询mysql返回字段整型变为String型解决方法 使用PDO查询mysql数据库时,执行prepare,execute后,返回的字段数据全都变为字符型. 例如id在数据库中是Int的,查询 ...

  7. mysql 修改字段长度

    mysql 修改字段长度 alter table news  modify column title varchar(130); alter table 表名 modify column 字段名 类型 ...

  8. mysql修改字段的语句写法

    http://www.111cn.net/database/mysql/50678.htm 下面为您介绍的sql语句都是mysql修改字段操作中的一些常用语句,如果您是一个刚刚接触mysql数据库的新 ...

  9. MySql 查询表字段数

    MySql 查询表字段数 SELECT COUNT(*) FROM information_schema.columns WHERE table_schema='test_cases' AND tab ...

随机推荐

  1. 长事务 (Long Transactions)

    长事务 长事务用于支持 AutoCAD 参照编辑功能,对于 ObjectARX 应用程序非常有用.这些类和函数为应用程序提供了一种方案,用于签出实体以进行编辑并将其签回其原始位置.此操作会将原始对象替 ...

  2. pinpoint:初始化hbase数据库

    安装完成hbase之后,需要初始化hbase的pinpoint库(创建表). 1. 登录数据库 [root@monitor default]# cd /home/pinpoint/hbase-1.7. ...

  3. Redis的攻击手法

    目录 Redis概述 Redis未授权 漏洞发现 漏洞验证 Redis写shell 漏洞利用 Redis写公钥 漏洞利用 主从复制RCE 漏洞简介: 漏洞利用 计划任务反弹shell 漏洞利用 Red ...

  4. Ueditor、FCKeditor、Kindeditor编辑器漏洞

    Ueditor.FCKeditor.Kindeditor编辑器漏洞 免责声明: Ueditor编辑器漏洞 文件上传漏洞 XSS漏洞 SSRF漏洞 FCKeditor编辑器漏洞 查看FCKeditor版 ...

  5. 2022春每日一题:Day 28

    题目:最大上升子序列和 就是最长上升子序列的改版,贡献由1改为a[i]其他全部不变 代码: #include <cstdio> #include <cstdlib> #incl ...

  6. GAMES101课程 作业6 源代码概览

    GAMES101课程 作业6 源代码概览 Written by PiscesAlpaca(双鱼座羊驼) 一.概述 本篇将从main函数为出发点,按照各cpp文件中函数的调用顺序和层级嵌套关系,简单分析 ...

  7. polkit(ploicykit)特权提升漏洞解决方案

    一.[概述] polkit 的 pkexec 存在本地权限提升漏洞,已获得普通权限的攻击者可通过此漏洞获取root权限,漏洞利用难度低. pkexec是一个Linux下Polkit里的setuid工具 ...

  8. C++ using 编译指令与名称冲突

    using 编译指令:它由名称空间名和它前面的关键字 using namespace 组成,它使名称空间中的所有名称都可用,而不需要使用作用域解析运算符.在全局声明区域中使用 using 编译指令,将 ...

  9. jquery操作class

    <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...

  10. 工程坐标转换方法C#代码实现

    目录 1. 前言 2. 计算总体框架 3. C#代码实现 3.1 整体类的构建 3.2 椭球参数赋值 3.3 转换1.3(大地经纬度坐标与地心地固坐标的转换) 3.4 投影转换 3.5 转换2的实现( ...