https://blog.csdn.net/u012750578/article/details/15026677

Mysql表的约束设计和关联关系设计

======================表的完整性======================

(1)实体完整性:每条记录有一个唯一标识符,通常用无任何业务含义的字段表示(主键)

(2)参照完整性:一张表的某个字段必须引用另一张表的某个字段值(外键)

(3)域完整性:域即单元数据,域中的数值必须符合一定的规则

定义主键约束

primary key:不允许为空,不允许重复

删除主键:alter table tablename drop primary key ;

定义主键自动增长(id,没有业务含义)

auto_increment(MySQL特有/UUID类生成)

定义唯一约束

unique

定义非空约束

not null

定义外键约束

constraint ordersid_FKforeign key(ordersid) references orders(id),

2 键的概念

(1)主键:只有唯一字段

(2)组合主键:由多个字段组合起来,形成唯一字段

(3)外键:针对多张表之间的关联

3 主键的特点

(1)主键不能重复

(2)主键不能为NULL

(3)auto_increment是MySQL特有的,默认从1开始,该ID值与表同生亡

(4)多人项目中,通常使用UUID来生成唯一的主键值,便于多个合并数据时依然保持实体完整性

--id主键

mysql> create table teacher(id intprimary key,

-> name varchar(20),

-> brithday date);

Query OK, 0 rows affected (0.61 sec)

mysql> select * from teacher;

Empty set (0.00 sec)

mysql> insert into teachervalues(1,'jack','1992-2-12');

Query OK, 1 row affected (0.11 sec)

mysql> select * from teacher;

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

| id | name | brithday   |

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

|  1| jack | 1992-02-12 |

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

1 row in set (0.00 sec)

mysql> desc teacher;

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

| Field   | Type        | Null | Key |Default | Extra |

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

| id      | int(11)     | NO   | PRI | NULL    |      |

| name    | varchar(20) | YES  |     | NULL   |       |

| brithday | date        | YES |     | NULL    |      |

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

3 rows in set (0.00 sec)

--主键不能重复,主键冲突,1代表第一列,即id列

mysql> insert into teachervalues(1,'marry','1996-2-12');

ERROR 1062 (23000): Duplicate entry '1' forkey 'PRIMARY'

mysql>

--主键不能为null

mysql> insert into teachervalues(null,'marry','1996-2-12');

ERROR 1048 (23000): Column 'id' cannot benull

-- 删除主键,主键在表只有一个,要么是一列,要么是多列

mysql> alter table teacher drop primarykey;

Query OK, 1 row affected (2.13 sec)

Records: 1 Duplicates: 0  Warnings: 0

mysql> desc teacher;

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

| Field   | Type        | Null | Key |Default | Extra |

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

| id      | int(11)     | NO   |    | NULL    |       |

| name    | varchar(20) | YES  |     | NULL   |       |

| brithday | date        | YES |     | NULL    |      |

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

3 rows in set (0.01 sec)

--主键id自动增长

mysql> drop table if exists teacher;

Query OK, 0 rows affected (0.32 sec)

mysql> create table teacher(id intprimary key auto_increment,

-> name varchar(20),

-> birthday date);

Query OK, 0 rows affected (0.96 sec)

mysql> desc teacher;

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

| Field   | Type        | Null | Key |Default | Extra          |

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

| id      | int(11)     | NO   | PRI | NULL    | auto_increment |

| name    | varchar(20) | YES  |     | NULL   |                |

| birthday | date        | YES |     | NULL    |                |

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

3 rows in set (0.01 sec)

mysql> insert into teacher(name,birthday)values('jack','1992-02-12');

Query OK, 1 row affected (0.06 sec)

mysql> insert intoteacher(name,birthday) values('marry','1992-4-8');

Query OK, 1 row affected (0.09 sec)

mysql> insert intoteacher(name,birthday) values('arry','1982-4-8');

Query OK, 1 row affected (0.14 sec)

mysql> select * from teacher;

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

| id | name | birthday   |

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

|  1| jack  | 1992-02-12|

|  2| marry | 1992-04-08 |

|  3| arry  | 1982-04-08|

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

3 rows in set (0.00 sec)

--检查主键id增长的序列

mysql> delete from teacher whereid<=3;

Query OK, 3 rows affected (0.08 sec)

mysql> select * from teacher;

Empty set (0.00 sec)

mysql> insert intoteacher(name,birthday) values('jack','1992-02-12');

Query OK, 1 row affected (0.13 sec)

mysql> select * from teacher;

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

| id | name | birthday   |

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

|  4| jack | 1992-02-12 |

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

1 row in set (0.00 sec)

--多人项目中,通常使用UUID来生成唯一的主键值,便于多个合并数据时依然保持实体完整性

4 唯一约束的特点

(1)非NULL值不能重复

(2)可以插入多个NULL值

(3)'NULL'空串和NULL是不同的概念

mysql> drop table teacher;

Query OK, 0 rows affected (0.42 sec)

--唯一

mysql> create table teacher(id intprimary key auto_increment,

-> name varchar(20) unique,

-> birthday date);

Query OK, 0 rows affected (1.49 sec)

mysql> insert intoteacher(name,birthday) values('marry','2011-2-2');

Query OK, 1 row affected (0.11 sec)

mysql> insert intoteacher(name,birthday) values(NULL,'2011-1-1');

Query OK, 1 row affected (0.04 sec)

mysql> desc teacher;

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

| Field   | Type        | Null | Key |Default | Extra          |

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

| id      | int(11)     | NO   | PRI | NULL    | auto_increment |

| name    | varchar(20) | YES  | UNI | NULL   |                |

| birthday | date        | YES |     | NULL    |                |

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

3 rows in set (0.00 sec)

--违反唯一

mysql> insert intoteacher(name,birthday) values('marry','2011-2-2');

ERROR 1062 (23000): Duplicate entry 'marry'for key 'name'

5 非空约束特点

(1)不能插入NULL值

(2)主键约束=非NULL约束+唯一约束

--违返不为空约束

mysql> drop table if exists teacher;

Query OK, 0 rows affected (0.19 sec)

mysql> create table teacher(

->    id int primary keyauto_increment,

->    name varchar(20) not nullunique,

->    birthday date

-> );

Query OK, 0 rows affected (1.45 sec)

mysql> insert intoteacher(name,birthday) values(NULL,'2011-1-1');

ERROR 1048 (23000): Column 'name' cannot benull

6 外健特点

(1)外键值必须来源于所引用别一个表主键值,或NULL

*7 关联关系

(1)一对一(外健根业务有关)

(2)一对多或多对一(外键放置在多方)

(3)多对多(外健放置在关联表中,即将一个多对多拆分成二个一对多关系)

一对一关系一:

mysql> create table person(

->  id int primary keyauto_increment,

->  name varchar(20) not null

-> );

Query OK, 0 rows affected (1.16 sec)

mysql> insert into person(name)values('jack');

Query OK, 1 row affected (0.15 sec)

mysql> insert into person(name)values('marry');

Query OK, 1 row affected (0.06 sec)

--card中pid为外person的外键

mysql> create table card(

-> id int primary key auto_increment,

->  location varchar(20) notnull,

->  pid int,

->  constraint pid_FK foreignkey(pid) references person(id)

-> );

Query OK, 0 rows affected (1.55 sec)

mysql> insert into card(location,pid)values('BJ',1);

Query OK, 1 row affected (0.11 sec)

mysql> insert into card(location,pid)values('GZ',2);

Query OK, 1 row affected (0.39 sec)

--外键pid可以插入NULL

mysql> insert into card(location,pid)values('CS',NULL);

Query OK, 1 row affected (0.05 sec)

--显示person与card表中的数据

mysql> select * from person;

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

| id | name |

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

|  1| jack  |

|  2| marry |

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

2 rows in set (0.00 sec)

mysql> select * from card;

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

| id | location | pid  |

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

|  1| BJ       |    1 |

|  2| GZ       |    2 |

|  3| CS       | NULL |

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

3 rows in set (0.00 sec)

--插入pid为3的出错误,外键pid必须来源另一表的主键值或为NULL

mysql> insert into card(location,pid)values('NJ',3);

ERROR 1452 (23000): Cannot add or update achild row: a foreign key constraint fails (`mydb2`.`card`, CONSTRAINT `pid_FK`FOREIGN KEY (`pid`) REFERENCES `person` (`id`))

注意:外键值必须来源于所引用别一个表主键值,或NULL

--有外键关系的行不能删除,需先删除其关联的外键关系,再进行删除主键关系的数据,与创建的时候相反

mysql> deletefrom person where name='jack';

ERROR 1451(23000): Cannot delete or update a parent row: a foreign key constraint fails(`mydb2`.`card`, CONSTRAINT `pid_FK` FOREIGN KEY (`pid`) REFERENCES `person`(`id`))

一对一关系方式二:主键当作另一个表的外键

例下面的card表的id既是主键又是外键

mysql> drop table if exists card;

Query OK, 0 rows affected (0.22 sec)

mysql> drop table if exists person;

Query OK, 0 rows affected (0.22 sec)

mysql> create table person(

-> id int primary key auto_increment,

->  name varchar(20) not null

-> );

Query OK, 0 rows affected (0.90 sec)

mysql> insert into person(name)values('jack');

Query OK, 1 row affected (0.07 sec)

mysql> insert into person(name)values('marry')

-> ;

Query OK, 1 row affected (0.10 sec)

--使用主键作为外键

mysql> create table card(

->  id int primary keyauto_increment,

->  location varchar(20) notnull,

->  constraint id_FK foreignkey(id) references person(id)

-> );

Query OK, 0 rows affected (0.86 sec)

mysql> insert into card(location)values('BJ');

Query OK, 1 row affected (0.06 sec)

mysql> insert into card(location)values('CS');

Query OK, 1 row affected (0.18 sec);

--id为3, 不符合参照完整性,3在person表中打不到

mysql> insert into card(location) values('GZ');

ERROR 1452 (23000): Cannot add or update achild row: a foreign key constraint fails (`mydb2`.`card`, CONSTRAINT `id_FK`FOREIGN KEY (`id`) REFERENCES `person` (`id`))

--NULL也不行,因为这里id为一个非空的属性

mysql> insert into card(location)values(NULL);

ERROR 1048 (23000): Column 'location'cannot be null

==========================一对多关系=============================

设计方案:

一方做一个容器,多方做一个引用

mysql> create table department(

->  id int primary keyauto_increment,

->  name varchar(20) not null

-> );

Query OK, 0 rows affected (1.70 sec)

mysql> insert into department(name)values('软件部');

Query OK, 1 row affected (0.10 sec)

mysql> insert into department(name)values('销售部');

Query OK, 1 row affected (0.06 sec)

mysql> create table employee(

->  id int primary keyauto_increment,

->  name varchar(20) not null,

->  did int,

->  constraint did_FK foreignkey(did) references department(id)

-> );

Query OK, 0 rows affected (1.02 sec)

mysql> insert into employee(name,did)values('jack',1);

Query OK, 1 row affected (0.12 sec)

mysql> insert into employee(name,did)values('marry',1);

Query OK, 1 row affected (0.13 sec)

mysql>

mysql> select * from department;

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

| id | name      |

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

|  1| 软件部    |

|  2| 销售部    |

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

2 rows in set (0.00 sec)

mysql> select * from employee;

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

| id | name | did  |

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

|  1| jack  |    1 |

|  2| marry |    1 |

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

2 rows in set (0.00 sec)

--查询软件部的员工(利用子查询)

mysql> select * from employee wheredid=(select id from department where name='软件部');

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

| id | name | did  |

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

|  1| jack  |    1 |

|  2| marry |    1 |

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

2 rows in set (0.05 sec)

--利用多表查询

mysql> select e.name as 员工姓名,d.name  as 部门名称 from employee e,department d where d.name='软件部';

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

| 员工姓名     | 部门名称     |

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

| jack         | 软件部       |

| marry        | 软件部       |

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

2 rows in set (0.01 sec)

============================多对多方案=============================

--创建的时候,先创建两边的,再创建中间的

--删除的时候先删除中间的,再删除两边的

mysql> drop table if exists middle;

Query OK, 0 rows affected, 1 warning (0.00sec)

mysql> drop table if exists student;

Query OK, 0 rows affected (0.25 sec)

mysql> drop table if exists teacher;

Query OK, 0 rows affected (0.33 sec)

mysql> create table if not existsstudent(

->  id int primary keyauto_increment,

->  name varchar(20) not null

-> );

Query OK, 0 rows affected (1.19 sec)

mysql> insert into student(name)values('jack');

Query OK, 1 row affected (0.08 sec)

mysql> insert into student(name)values('marry');

Query OK, 1 row affected (0.04 sec)

mysql> create table if not existsteacher(

->  id int primary key auto_increment,

->  name varchar(20) not null

-> );

Query OK, 0 rows affected (1.43 sec)

mysql> insert into teacher(name)values('赵');

Query OK, 1 row affected (0.34 sec)

mysql> insert into teacher(name)values('蔡');

Query OK, 1 row affected (0.07 sec)

--多对多(外健放置在关联表中,即将一个多对多拆分成二个一对多关系)

-- 组合主键

mysql> create table if not existsmiddle(

->  sid int,

->  tid int,

->  constraint sid_FK foreignkey(sid) references student(id),

->  constraint tid_FK foreignkey(tid) references teacher(id),

->  primary key(sid,tid)

-> );

Query OK, 0 rows affected (1.59 sec)

mysql> insert into middle(sid,tid)values(1,1);

Query OK, 1 row affected (0.14 sec)

mysql> insert into middle(sid,tid)values(1,2);

Query OK, 1 row affected (0.06 sec)

mysql> insert into middle(sid,tid)values(2,1);

Query OK, 1 row affected (1.07 sec)

mysql> insert into middle(sid,tid)values(2,2);

Query OK, 1 row affected (0.07sec)mysql> insert into middle(sid,tid) values(2,2);

--查询赵教师教过的所有学员,组合查询

--t.name='赵'  条件

-- and m.sid=s.id andm.tid=t.id  --表连接起来

模式:

select 列出需要显示的字段

from 列出所涉及到的所有表,建议写别名

where 业务条件and 表关联条件

--sql

mysql> selectt.name as 老师, s.name as 学员

-> from teacher as t,student as s,middleas m

-> where t.name = '赵'and m.sid=s.id and m.tid=t.id;

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

| 老师  | 学员   |

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

| 赵    | jack   |

| 赵    | marry  |

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

2 rows in set(0.00 sec)

转载于:https://www.cnblogs.com/hokky/p/9009127.html

Mysql表的约束设计和关联关系设计相关推荐

  1. day27 MySQL 表的约束与数据库设计

    day27  MySQL 表的约束与数据库设计 第1节 回顾 1.1  数据库入门 1.1.1 SQL 语句的分类: 1) DDL 数据定义语言 2) DML 数据操作语言 3) DQL 数据查询语言 ...

  2. java MySQL表的约束与数据库设计 详解

    1.DQL 数据查询语言 在上一篇博文中,我们已经讲述了部分数据查询语句,在此我们再次对其进行补充. 1.1 排序 通过ORDAR BY 语句,可以将查询出来的结果进行排序.(排除只是一种现实的方式, ...

  3. 是先设计mysql表再进行php代码_MySQL设计与开发规范_MySQL

    1 目的 本规范的主要目的是希望规范数据库设计与开发,尽量避免由于数据库设计与开发不当而产生的麻烦:同时好的规范,在执行的时候可以培养出好的习惯,好的习惯是软件质量的很好保证. 2 适用范围 本规划的 ...

  4. MySQL表级约束和列级约束

    MySQL中只要支持六种完整性约束,如表所示:其中check约束是MySQL8中提供的支持. 约束条件 约束描述 primary key 主键约束,约束的值可唯一的标识对应的记录 not null 非 ...

  5. MySQL表结构导出Excel

    MySQL表结构导出Excel 在写设计文档时,需要把MySQL中的表结构按要求导出.MySQL客户端默认的字段不满足需求时,可通过MySQL的information_schema.COLUMNS表, ...

  6. 21 个 MySQL 表设计的经验准则

    前言 作为后端开发,我们经常需要设计数据库表. 今天给大家分享 21 个设计 MySQL 表的经验准则,希望对大家有所帮助. 1. 命名规范 数据库表名.字段名.索引名等都需要命名规范,可读性高(一般 ...

  7. 21个MySQL表设计的经验准则

    前言 作为后端开发,我们经常需要设计数据库表.整理了21个设计MySQL表的经验准则,分享给大家,大家看完一定会有帮助的. 1.命名规范 数据库表名.字段名.索引名等都需要命名规范,可读性高(一般要求 ...

  8. 数据库总结(四):表设计之关联关系

    数据库总结(一):基本SQL 数据库总结(二):基本查询 数据库总结(三):分组,联结 数据库总结(四):表设计之关联关系 数据库总结(五):视图,约束,索引 表设计之关联关系 一对一 什么是一对一: ...

  9. MySQL---two 表的约束与数据库设计

    目录 1.数据库的备份和还原 1.1备份的应用场景 1.2备份与还原的语句 1.2.1备份格式: 1.2.2还原格式: 1.2.3备份操作: 1.2.4还原操作 1.3图形化界面备份与还原 1.3.1 ...

  10. 【MySQL】MySQL表设计的经验(建议收藏)

    文章目录 前言 1. 命名规范 2. 选择合适的字段类型 3. 主键设计要合理 4. 选择合适的字段长度 5. 优先考虑逻辑删除,而不是物理删除 6. 每个表都需要添加这几个通用字段如主键.creat ...

最新文章

  1. 设计模式系列·抽象工厂模式
  2. WinAPI: CopyFileEx
  3. python培训深圳-深圳Python培训机构排名
  4. 第七篇:使用 CUDA 进行计算优化的两种思路
  5. 光谱分类算法 matlab,Matlab K-means聚类算法对多光谱遥感图像进行分类(一)
  6. 软件工程 之 画扇面
  7. 1.7 编程基础之字符串 27 单词翻转 4分 python
  8. Qt文档阅读笔记-Object Trees Ownership解析与实例(为何某些程序在被关闭的时候会崩溃)
  9. 深度学习——CNN、RNN、DNN汇总
  10. CentOS添加新角色(新增一个具有root权限的新用户)
  11. 法拉克机器人自动怎么调_发那科机器人的简单设置你知道吗
  12. 全网解析视频接口自行测试
  13. win7计算机屏幕休眠,windows7系统怎么设置屏幕不休眠
  14. android View和ViewGroup创建以及绘制流程
  15. matlab精度高保存图片
  16. OMV搭建系列教程[5] – 安装Aria2
  17. 如果还不知道这些跨境电商软件那你就亏了
  18. ThreadPoolExecutor中addWorker,continue retry和break retry是什么意思
  19. python爬上市公司信息_实战项目 1:5 行代码爬取国内所有上市公司信息
  20. java model类作用_SPRING框架中ModelAndView、Model、ModelMap区别及详细分析

热门文章

  1. 【设计模式】Template Method模式
  2. Unity3D研究院之手游开发中所有特殊的文件夹(转)
  3. cello 有关状态
  4. 互联网寒冬,腾讯人均发放巨额奖励,更是在号召「共同富裕」
  5. NIPS中稿,聊聊科研!
  6. 【GCN】2021年,我终于决定入门GCN
  7. 315页 A Tutorial on Graph Neural Networks for NLP
  8. 【论文】使用bilstm在中文分词上的SOTA模型
  9. poj2991(Crane)线段树+计算几何
  10. Java网络编程之服务端中的Socket