当前位置:网站首页>[three paradigms of database] you can understand it at a glance
[three paradigms of database] you can understand it at a glance
2022-07-06 13:53:00 【No baldness】
Three paradigms
First normal form (1NF)
Make sure the database The atomicity of a field ( That is, indivisibility );
* example : Judge whether the following table conforms to First normal form ?
| Number | full name | Telephone |
| 1 | Xue Baochai | 10076 |
| 2 | Jia Baoyu | 10086 |
| 3 | Lin daiyu | 10096 |
First of all, we need to Business needs To judge Atomic properties of fields , The only thing that can be split in the above table is the name , If the business thinks that the name is a field , Then the table satisfies the first normal form ; But if the business requires our name to be written in two fields ( Last name and first name ), It does not satisfy the first paradigm , Split the name to meet ( Here's the picture ).
| Number | surname | name | Telephone |
| 1 | Xue | Bao Chai | 10076 |
| 2 | Jia | The treasure jade | 10086 |
| 3 | Lin | Daiyu | 10096 |
Second normal form (2NF)
In the meet 1NF On the basis of , It also contains two contents :
(1) The watch must have A primary key
(2) Non primary key columns must Completely dependent on Primary key , You can't rely on only part of the primary key ( Not partially dependent );
* example : Judge whether the following table conforms to Second normal form ?( Set up : The business requirements of this table meet the first paradigm )
| full name | Gender | Telephone | Department name | Department floor |
| Xue Baochai | Woman | 10076 | Public relations | 5 layer |
| Jia Baoyu | male | 10086 | Publicity Department | 3 layer |
| Lin daiyu | Woman | 10096 | Public relations | 5 layer |
First, on the basis of the first paradigm , We can see that the primary key of this table is Composite primary key .( full name + Department name ), Content satisfied (1) The watch must have A primary key
secondly , We found that non primary key columns are partially dependent on primary keys Instead of relying entirely on primary keys : Gender of non primary key column 、 The phone depends on the name , The non primary key column Department floor depends on the Department name
Not satisfied with the content (2) Non primary key columns must Completely dependent on Primary key , You can't rely on only part of the primary key
In order to conform to the second paradigm , We will proceed with the table Split and optimize
| Job number | full name | Gender | Telephone |
| 101 | Xue Baochai | Woman | 10076 |
| 102 | Jia Baoyu | male | 10086 |
| 103 | Lin daiyu | Woman | 10096 |
| Department number | Department name | Department floor |
| 1 | Public relations | 5 layer |
| 2 | Publicity Department | 3 layer |
| 1 | Public relations | 5 layer |
| Department number | Job number | full name | Gender | Telephone |
| 1 | 101 | Xue Baochai | Woman | 10076 |
| 2 | 102 | Jia Baoyu | male | 10086 |
| 1 | 103 | Lin daiyu | Woman | 10096 |
We put Set the department number as the primary key of the Department table ( The foreign key of the master table )、 The job number is set as the primary key of the master table , Because they have no practical business significance , So when we modify the data ( For example, change your name 、 Department name ), You don't have to change it line by line .
Third normal form (3NF)
In the meet 2NF On the basis of , In addition, non primary key columns must Directly dependent on Primary key ( Cannot rely on non primary keys ), There can be no delivery dependency ,
That is, it cannot exist A Depend on B,B Depend on C;
( among A、B Is a non primary key column ,C Primary key )
* example : Judge whether the following table conforms to Third normal form ?( The business requirements of this table have met the second paradigm )
| Department number | Job number | full name | Gender | Telephone | Position | Wages |
| 1 | 101 | Xue Baochai | Woman | 10076 | formal | 8000 |
| 2 | 102 | Jia Baoyu | male | 10086 | Internship | 4000 |
| 1 | 103 | Lin daiyu | Woman | 10096 | formal | 8000 |
In order to conform to the third paradigm , We will proceed with the table Split and optimize
First, on the basis of the first paradigm , We can see that the salary in the non primary key column of the table depends on the position in the non primary key column , There are transitive dependencies , That is, it does not meet the requirements of the third paradigm
| Job number | full name | Gender | Telephone |
| 101 | Xue Baochai | Woman | 10076 |
| 102 | Jia Baoyu | male | 10086 |
| 103 | Lin daiyu | Woman | 10096 |
| Department number | Department name | Department floor |
| 1 | Public relations | 5 layer |
| 2 | Publicity Department | 3 layer |
| 1 | Public relations | 5 layer |
| Job number | Position | Wages |
| 01 | formal | 8000 |
| 02 | Internship | 4000 |
| 01 | formal | 8000 |
| Department number | Job number | full name | Gender | Telephone | Job number |
| 1 | 101 | Xue Baochai | Woman | 10076 | 01 |
| 2 | 102 | Jia Baoyu | male | 10086 | 02 |
| 1 | 103 | Lin daiyu | Woman | 10096 | 01 |
For explanation, please refer to the end of the second paradigm
ps: We must start from the business needs ( That's the scene ) Set out to judge whether it conforms to the paradigm
Why learn paradigm ?
When we communicate business needs with customers Or is it To complete a project , We need to design a suitable data model . here , The importance of standardized design is highlighted .
What is the paradigm ?
A paradigm is a collection of relational patterns that conform to a certain level . The construction of database must follow certain rules ( In a relational database , This rule refers to the paradigm )). The relationship in relational database must meet certain requirements , That is to meet different paradigms .
What problems can learning paradigm solve ?
Learning standardized design can solve the following problems :
1. data redundancy
2. Abnormal problems :
Update exception
Insertion exception
Delete exception
边栏推荐
- 实验五 类和对象
- [during the interview] - how can I explain the mechanism of TCP to achieve reliable transmission
- 撲克牌遊戲程序——人機對抗
- 1. First knowledge of C language (1)
- 强化学习基础记录
- 为什么要使用Redis
- Read only error handling
- Mixlab unbounded community white paper officially released
- 2. First knowledge of C language (2)
- Meituan dynamic thread pool practice ideas, open source
猜你喜欢

The difference between cookies and sessions

Cookie和Session的区别

受检异常和非受检异常的区别和理解

canvas基础1 - 画直线(通俗易懂)

Callback function ----------- callback

关于双亲委派机制和类加载的过程

Record a penetration of the cat shed from outside to inside. Library operation extraction flag

(原创)制作一个采用 LCD1602 显示的电子钟,在 LCD 上显示当前的时间。显示格式为“时时:分分:秒秒”。设有 4 个功能键k1~k4,功能如下:(1)k1——进入时间修改。

1143_ SiCp learning notes_ Tree recursion

4. Branch statements and loop statements
随机推荐
实验五 类和对象
Analysis of penetration test learning and actual combat stage
Zatan 0516
QT meta object qmetaobject indexofslot and other functions to obtain class methods attention
C language Getting Started Guide
Write a program to simulate the traffic lights in real life.
MySQL事务及实现原理全面总结,再也不用担心面试
实验四 数组
Brief introduction to XHR - basic use of XHR
Get started with typescript
[the Nine Yang Manual] 2018 Fudan University Applied Statistics real problem + analysis
Mortal immortal cultivation pointer-2
记一次猫舍由外到内的渗透撞库操作提取-flag
【数据库 三大范式】一看就懂
[the Nine Yang Manual] 2019 Fudan University Applied Statistics real problem + analysis
7-14 错误票据(PTA程序设计)
1. First knowledge of C language (1)
A piece of music composed by buzzer (Chengdu)
【头歌educoder数据表中数据的插入、修改和删除】
Record a penetration of the cat shed from outside to inside. Library operation extraction flag