当前位置:网站首页>Simple and clear, the three paradigms of database design
Simple and clear, the three paradigms of database design
2022-08-04 06:04:00 【Live up to [email protected]】
Paradigm: Simply put, it is to standardize the design of database tables and some specifications that need to be met in order to optimize the way data is stored.
In relational databases these norms can be called paradigms.
First Normal Form
1. Each column attribute is a indivisible attribute value, ensuring the atomicity
of each column2. The attributes of the two columns are similar or similar or same, try to merge columns with the same attributes,Make sure not to generate redundant data.
Example:

If the need is to split the address into provinces and cities,And according to its classification, then obviously the first table is not easy to meet the needs, and does not conform to the first normal form.
After splitting, example:
After splitting, it conforms to the first normal form.
Second Normal Form
Each row of data can only be associated with one of the columns, that is, a row of data does only one thing.
A table split should be split whenever duplication of data occurs in a data column.
Example:
When a person books several rooms at the same time, multiple pieces of data will be generated for one order number, so that the sub-contacts are duplicated, which will cause data redundancy.We should take him apart.
Example:
After splitting, it conforms to the second normal form.
Third Normal Form
Data cannot have transitive relationship, that is, each attribute has a direct relationship with the primary key rather than an indirect relationship.
Such a relationship between attributes like: a–>b–>c does not conform to the third normal form.
Such as Student table (student number, name, age, gender, institution, institution address, institution phone number)
In such a table structure, the above relationship exists.Student ID –> Institution --> (Institution address, institution phone number)
Such a table structure should be disassembled, as follows.
(Student ID, Name, Age, Gender, School) – (School, School Address, School Phone)
版权声明
本文为[Live up to [email protected]]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/216/202208040525327395.html
边栏推荐
猜你喜欢
随机推荐
简单明了,数据库设计三大范式
自动化运维工具Ansible(3)PlayBook
flink-sql查询配置与性能优化参数详解
thymeleaf中 th:href使用笔记
自动化运维工具Ansible(4)变量
WARNING: sql version 9.2, server version 11.0.Some psql features might not work.
对象存储-分布式文件系统-MinIO-1:概念
进程、线程、协程的区别和联系?
数据库根据提纲复习
逻辑回归---简介、API简介、案例:癌症分类预测、分类评估法以及ROC曲线和AUC指标
ISCC2021——web部分
oracle临时表与pg临时表的区别
纳米级完全删除MYSQL5.7以及一些吐槽
【深度学习21天学习挑战赛】3、使用自制数据集——卷积神经网络(CNN)天气识别
flink-sql自定义函数
(十二)树--哈夫曼树
关系型数据库-MySQL:约束管理、索引管理、键管理语句
简单说Q-Q图;stats.probplot(QQ图)
二月、三月校招面试复盘总结(二)
Androd Day02








