Web/10-MySQL数据库/MySQL设计三大范式.md
2021-07-29 11:08:52 +08:00

48 lines
716 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: 01-Bootstrap入门
publish: false
---
<ArticleTopAd></ArticleTopAd>
## 前言
范式即规范MySQL 范式的作用是
- 让我们建的表更佳简洁和高效
- 让功能独立化避免耦合
## MySQL 设计三大范式
### 第一范式1NF原子性
表的每一列具有原子性不可再分
### 第二范式唯一性
第二范式是建立在第一范式基础上的外要求所有非主键字段必须完全依赖主键而不是部分依赖
### 第三范式
第三范式是建立在第二范式基础上的且要求没有传递依赖
## 参考链接
- [MySql--数据库设计三范式](https://www.jianshu.com/p/3e97c2a1687b)