当前位置:网站首页>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
边栏推荐
猜你喜欢
随机推荐
ISCC2021——web部分
数据库根据提纲复习
flink-sql查询配置与性能优化参数详解
Upload靶场搭建&&第一二关
智能合约安全——私有数据访问
Jupyter Notebook安装库;ModuleNotFoundError: No module named ‘plotly‘解决方案。
自动化运维工具Ansible(2)ad-hoc
flink onTimer定时器实现定时需求
(十一)树--堆排序
Matplotlib中的fill_between;np.argsort()函数
Commons Collections2
纳米级完全删除MYSQL5.7以及一些吐槽
智能合约安全——delegatecall (1)
简单明了,数据库设计三大范式
对象存储-分布式文件系统-MinIO-3:MinIo Client(mc)
Kubernetes集群安装
flink sql left join数据倾斜问题解决
【树 图 科 技 头 条】2022年6月28日 星期二 伊能静做客树图社区
PHP课堂笔记(一)
postgresql 游标(cursor)的使用









