Three Paradigms 1NF: Fields are inseparable; 2NF: There is a primary key, and non-primary key fields depend on the primary key; 3NF: Non-primary key fields cannot depend on each other; explain: 1NF: The atomic field cannot be divided any further, otherwise it is not a relational database; 2NF: Uniqueness A table only describes one thing; 3NF: Each column has a direct relationship with the primary key, and there is no transitive dependency; First Normal Form (1NF) That is, the columns of the table are atomic and cannot be decomposed any further. That is, the information in the columns cannot be decomposed. As long as the database is a relational database (mysql/oracle/db2/informix/sysbase/sql server), it automatically meets 1NF. Each column in a database table is an indivisible atomic data item, and cannot be a non-atomic data item such as a collection, array, or record. If an attribute in an entity has multiple values, it must be split into different attributes. In simple terms, a field only stores one piece of information. Relational database: mysql/oracle/db2/informix/sysbase/sql server Non-relational database: (Features: object-oriented or collection-oriented) NoSql database: MongoDB/redis (Features: document-oriented) Second Normal Form (2NF) The second normal form (2NF) is built on the basis of the first normal form (1NF), that is, to satisfy the second normal form (2NF), the first normal form (1NF) must be satisfied first. The second normal form (2NF) requires that each instance or row in a database table must be uniquely distinguishable. To achieve this distinction, we usually need to design a primary key to achieve it (the primary key here does not contain business logic). That is, the first paradigm premise is met. When there are multiple primary keys, it will not comply with the second paradigm. For example, if there are two primary keys, there cannot be an attribute that depends on only one of the primary keys. This does not conform to the second normal form. The common understanding is that any field only depends on the same field in the table. (Involving table splitting) See the student course selection table below: |
Student ID | course | score | Course Credits |
---|---|---|---|
10001 | math | 100 | 6 |
10001 | Language | 90 | 2 |
10001 | English | 85 | 3 |
10002 | math | 90 | 6 |
10003 | math | 99 | 6 |
10004 | Language | 89 | 2 |
The primary key in the table is (student number, course), which can be expressed as (student number, course) -> (grade, course credits), indicating that all non-primary key columns (grade, course credits) are dependent on the primary key (student number, course). However, there is another dependency in the table: (Course)->(Course Credits). In this way, the non-primary key column 'Course Credits' depends on the partial primary key column 'Course', so the above table does not satisfy the second normal form.
We split it into the following two tables:
Student course selection table:
Student ID | course | score |
---|---|---|
10001 | math | 100 |
10001 | Language | 90 |
10001 | English | 85 |
10002 | math | 90 |
10003 | math | 99 |
10004 | Language | 89 |
Course Information Sheet:
course | Course Credits |
---|---|
math | 6 |
Language | 3 |
English | 2 |
For the above two tables, the primary key of the student course selection table is (student number, course), and the primary key of the course information table is (course). All non-primary key columns in the table are completely dependent on the primary key. It not only conforms to the second paradigm, but also conforms to the third paradigm.
Let’s look at this student information sheet:
Student ID | Name | gender | class | head teacher |
---|---|---|---|---|
10001 | Zhang San | male | Class 1 | Xiao Wang |
10002 | Li Si | male | Class 1 | Xiao Wang |
10003 | Wang Wu | male | Class 2 | Xiao Li |
10004 | Zhang Xiaosan | male | Class 2 | Xiao Li |
In the above table, the primary key is: (student number), all fields (name, gender, class, head teacher) are dependent on the primary key (student number), and there is no partial dependence on the primary key. So it satisfies the second normal form.
Third Normal Form (3NF)
To satisfy the third normal form (3NF), the second normal form (2NF) must be satisfied first. In short, the third normal form (3NF) requires that a database table does not contain non-primary key fields that are already included in other tables. That is to say, if the information of the table can be deduced, a separate field should not be designed to store it (use foreign key join if possible). Often, in order to meet the third normal form, we often divide a table into multiple tables.
That is, it satisfies the premise of the second normal form. If an attribute depends on other non-primary key attributes, and other non-primary key attributes depend on the primary key, then this attribute is indirectly dependent on the primary key, which is called transitive dependence on the primary attribute. The simple explanation is that a table can only store two layers of the same type of information at most.
Anti-three paradigms
A database without redundancy is not necessarily the best database. Sometimes, in order to improve operational efficiency and read performance, it is necessary to lower the paradigm standard and appropriately retain redundant data. The specific approach is: comply with the third normal form when designing the conceptual data model, and consider lowering the paradigm standard when designing the physical data model. Lowering the paradigm means adding fields, reducing the associations during query, and improving query efficiency, because the proportion of queries in database operations is much greater than that of DML. However, de-paradigmization must be moderate, and adjustments should be made based on the original satisfaction of the three paradigms.
The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.
<<: How to configure the maximum number of files that can be opened by each Nginx process
>>: A brief discussion on using virtual lists to optimize tables in el-table
Nginx Installation CentOS 6.x yum does not have n...
Table of contents Written in front What exactly i...
Problem Description There is a type of query call...
[LeetCode] 180. Consecutive Numbers Write a SQL q...
Nginx is a powerful, high-performance web and rev...
Table of contents Introduction Using Strict mode ...
Table of contents Introduction and Demo API: Cont...
Horizontal Line Use the <hr /> tag to draw ...
The following situations were discovered during d...
How to modify the mysql table partitioning progra...
Table of contents 1. some 2. every 3. find 1. som...
First, let’s understand what MySQL is? MySQL is a...
routing vue-router4 keeps most of the API unchang...
The Truncate table statement is used to delete/tr...
DOCTYPE DECLARATION At the top of every page you w...