当前位置:网站首页>What is the database paradigm
What is the database paradigm
2020-11-08 12:11:00 【osc_6l5fg87g】
Preface :
About the database paradigm , I have often heard of , I haven't been able to understand in detail . A general database book or database course will introduce content related to the paradigm , Paradigms often appear in database exam questions . I don't know if you have a clear understanding of paradigms ? In this article, let's learn the database paradigm .
1. Introduction to database paradigm
In order to establish less redundancy 、 A well structured database , There are certain rules that must be followed when designing a database . In a relational database, such rules are called paradigms . A paradigm is a summary of a design requirement . To design a relational database with reasonable structure , Must meet certain paradigms .
The English name of the paradigm is Normal Form , abbreviation NF . It's English E.F.Codd In the last century 70 After the introduction of relational database model in the s . Paradigm is the basis of relational database theory , It is also the rules and guiding methods that we should follow in the process of designing database structure .
At present, there are six common paradigms of relational database : First normal form (1NF)、 Second normal form (2NF)、 Third normal form (3NF)、 buss - The COD paradigm (BCNF)、 Fourth normal form (4NF) And the fifth paradigm (5NF, Also called perfect paradigm ). The paradigm that meets the minimum requirements is the first paradigm (1NF). On the basis of the first paradigm, it is called the second paradigm (2NF), The other paradigms are analogies .
2. Common paradigms are explained in detail
When designing a database , Will refer to the paradigm requirements to do , But that's not to say that the higher the paradigm level, the better , The paradigm is too high, although it has better constraints on data relations , But it can also lead to more complicated relationships between tables , This results in more tables per operation , Database performance degradation . Usually , In relational database design , The highest is to follow BCNF , Generally speaking, it is still 3NF . That is, in general , We have enough of the first three paradigms . Let's take a closer look at the first three common paradigms .
First normal form (1NF)
The first paradigm is the most basic paradigm . If all field values in the database table are atomic values that cannot be decomposed , It shows that the database table satisfies the first paradigm . In short, the first paradigm is that the data in each row are indivisible , Cannot have more than one value in the same column , If there are duplicate attributes, you need to define a new entity .
Example : Suppose a company wants to store the names and contact information of its employees . It creates a table like this :
Two employees (Jon&Lester) Have two cell phone numbers , So the company stores them in the same form , As shown in the table above . Then the table doesn't match 1NF , Because the rules say “ Each attribute of a table must have atoms ( Single ) value ”,Jon&Lester Staff emp_mobile Value violates the rule . In order to make the table conform to 1NF , We should have the following table data :
Second normal form (2NF)
The second paradigm goes one step further than the first . The second paradigm needs to ensure that every column in the database table is related to the primary key , You can't just relate to a part of the primary key ( Mainly for the union primary key ). That is to say, in a database table , Only one kind of data can be saved in a table , It is not allowed to save multiple data in the same database table .
+----------+-------------+-------+
| employee | department | head |
+----------+-------------+-------+
| Jones | Accountint | Jones |
| Smith | Engineering | Smith |
| Brown | Accounting | Jones |
| Green | Engineering | Smith |
+----------+-------------+-------+
The table above describes the employed , The relationship between the work department and the leader . We use data that uniquely represents a row of a table in the database as the primary key of the table . In the table head Columns are not related to primary keys . therefore , The table does not conform to the second normal form , To make the table above conform to the second normal form , You need to split it into two tables :
-- employee Primary key
+----------+-------------+
| employee | department |
+----------+-------------+
| Brown | Accounting |
| Green | Engineering |
| Jones | Accounting |
| Smith | Engineering |
+----------+-------------+
-- department Primary key
+-------------+-------+
| department | head |
+-------------+-------+
| Accounting | Jones |
| Engineering | Smith |
+-------------+-------+
Third normal form (3NF)
Satisfy 2NF Under the premise of , All fields other than the primary key must be independent of each other , That is, you need to make sure that every column in the data table is directly related to the primary key , Not indirectly .
In short , Third normal form (3NF) It is required that a relationship does not contain non primary key information that has been included in other relationships . for example , There is a department information table , Each of these departments has a department number (dept_id)、 Department name 、 Department profile and other information . Then after the department number is listed in the employee information table, the Department name can no longer be 、 Department profile and other information related to the Department will be added to the employee information form . If there is no department information table , According to the third paradigm (3NF) It should also be built , Otherwise, there will be a lot of data redundancy .
3. About the anti paradigm
The advantages of paradigms are obvious , It avoids a lot of data redundancy , Save storage space , Keep the data consistent . The normalized table is usually smaller , Can be better placed in memory , So it's faster . So is it necessary to normalize all tables as 3NF after , Database design is the best ? It doesn't have to be . The higher the paradigm, the finer the table partition , The more tables you need in a database , The user has to spread the data that was originally associated to multiple tables . A slightly more complex query statement may require at least one Association on a normal database , Maybe more , It's not only expensive , It may also invalidate some indexing strategies .
So when we design a database , It doesn't exactly follow the paradigm , Sometimes there's anti paradigm design . Improve database read performance by adding redundant or duplicate data , Reduce the number of associated queries ,join Times of table .
Reference resources :
版权声明
本文为[osc_6l5fg87g]所创,转载请带上原文链接,感谢
边栏推荐
- TCP协议如何确保可靠传输
- Bohai bank million level fines continue: Li Volta said that the governance is perfect, the growth rate is declining
- 笔试面试题目:求丢失的猪
- 渤海银行百万级罚单不断:李伏安却称治理完善,增速呈下滑趋势
- Flink从入门到真香(6、Flink实现UDF函数-实现更细粒度的控制流)
- Rust: performance test criteria Library
- C语言I博客作业03
- python基础教程python opencv pytesseract 验证码识别的实现
- 笔试面试题目:盛水最多的容器
- next.js实现服务端缓存
猜你喜欢
虚拟机中安装 macOS 11 big sur
Top 5 Chinese cloud manufacturers in 2018: Alibaba cloud, Tencent cloud, AWS, telecom, Unicom
Introduction to mongodb foundation of distributed document storage database
漫画|讲解一下如何写简历&项目
TiDB 性能竞赛 11.02-11.06
2 days, using 4 hours after work to develop a test tool
[data structure Python description] use hash table to manually implement a dictionary class based on Python interpreter
Service architecture and transformation optimization process of e-commerce trading platform in mogujie (including ppt)
Where is the new target market? What is the anchored product? |Ten questions 2021 Chinese enterprise service
Bohai bank million level fines continue: Li Volta said that the governance is perfect, the growth rate is declining
随机推荐
Top 5 Chinese cloud manufacturers in 2018: Alibaba cloud, Tencent cloud, AWS, telecom, Unicom
啥是数据库范式
Windows下快递投递柜、寄存柜的软件初探
AQS解析
Win10 Terminal + WSL 2 安装配置指南,精致开发体验
Flink's sink: a preliminary study
阿里撕下电商标签
This time Kwai tiktok is faster than shaking.
2018中国云厂商TOP5:阿里云、腾讯云、AWS、电信、联通 ...
It's worth seeing! EMR elastic low cost offline big data analysis best practice (with network disk link)
解析Istio访问控制
Close to the double 11, he made up for two months and successfully took the offer from a large factory and transferred to Alibaba
Enabling education innovation and reconstruction with science and technology Huawei implements education informatization
next.js实现服务端缓存
Ali! Visual computing developer's series of manuals (with internet disk link)
2018中国云厂商TOP5:阿里云、腾讯云、AWS、电信、联通 ...
Ali teaches you how to use the Internet of things platform! (Internet disk link attached)
Shell uses. Net objects to send mail
211 postgraduate entrance examination failed, stay up for two months, get the byte offer! [face to face sharing]
Xamarin deploys IOS from scratch Walterlv.CloudKeyboard application