当前位置:网站首页>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
边栏推荐
猜你喜欢
随机推荐
pgsql函数中的return类型
记一次flink程序优化
(TensorFlow)——tf.variable_scope和tf.name_scope详解
CTFshow—Web入门—信息(1-8)
flink onTimer定时器实现定时需求
登录页面js手写
完美解决keyby造成的数据倾斜导致吞吐量降低的问题
(五)栈及其应用
关系型数据库-MySQL:二进制日志(binlog)
8.30难题留坑:计数器问题和素数等差数列问题
JS实现上一个、下一个、置顶、置底操作
(十)树的基础部分(二)
Lombok的一些使用心得
将两个DataTable合并——DataTable.Merge 方法
【深度学习21天学习挑战赛】1、我的手写被模型成功识别——CNN实现mnist手写数字识别模型学习笔记
sklearn中的学习曲线learning_curve函数
ISCC2021——web部分
postgres 递归查询
keep-alive的使用及详解
自动化运维工具Ansible(2)ad-hoc