Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
Database normalization
(section)
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
== Example of a step-by-step normalization == Normalization is a database design technique, which is used to design a [[relational database]] table up to higher normal form.<ref>{{Cite book|last1=Kumar|first1=Kunal|last2=Azad|first2=S. K.|title=2017 4th IEEE Uttar Pradesh Section International Conference on Electrical, Computer and Electronics (UPCON) |chapter=Database normalization design pattern |date=October 2017|pages=318β322 |publisher=IEEE|doi=10.1109/upcon.2017.8251067|isbn=9781538630044|s2cid=24491594}}</ref> The process is progressive, and a higher level of database normalization cannot be achieved unless the previous levels have been satisfied.<ref name=":0">{{Cite web |url=https://www.computerweekly.com/tutorial/Database-normalization-in-MySQL-Four-quick-and-easy-steps |title=Database normalization in MySQL: Four quick and easy steps |website=ComputerWeekly.com |language=en |access-date=2021-03-23 |archive-url=https://web.archive.org/web/20170830224213/https://www.computerweekly.com/tutorial/Database-normalization-in-MySQL-Four-quick-and-easy-steps |archive-date=2017-08-30}}</ref> That means that, having data in [[unnormalized form]] (the least normalized) and aiming to achieve the highest level of normalization, the first step would be to ensure compliance to [[first normal form]], the second step would be to ensure [[second normal form]] is satisfied, and so forth in order mentioned above, until the data conforms to [[sixth normal form]]. However, normal forms beyond [[4NF]] are mainly of academic interest, as the problems they exist to solve rarely appear in practice.<ref>{{Cite web|url=https://mariadb.com/kb/en/library/database-normalization-5th-normal-form-and-beyond/|title=Database Normalization: 5th Normal Form and Beyond|website=MariaDB KnowledgeBase|access-date=2019-01-23}}</ref> ''The data in the following example was intentionally designed to contradict most of the normal forms. In practice it is often possible to skip some of the normalization steps because the data is already normalized to some extent. Fixing a violation of one normal form also often fixes a violation of a higher normal form. In the example, one table has been chosen for normalization at each step, meaning that at the end, some tables might not be sufficiently normalized.'' === Initial data === Let a database table exist with the following structure:<ref name=":0" /> {| class="wikitable" !Title !Author !Author Nationality !Format !Price !Subject !Pages !Thickness !Publisher !Publisher Country !Genre ID !Genre Name |- |Beginning MySQL Database Design and Optimization |Chad Russell |American |Hardcover |49.99 | {| class="wikitable" |MySQL |- |Database |- | Design |} |520 |Thick |Apress |USA |1 |Tutorial |} For this example it is assumed that each book has only one author. A table that conforms to the relational model has a [[primary key]] which uniquely identifies a row. In our example, the primary key is a [[composite key]] of '''{Title, Format}''' (indicated by the underlining): {| class="wikitable" !<u>Title</u> !Author !Author Nationality !<u>Format</u> !Price !Subject !Pages !Thickness !Publisher !Publisher Country !Genre ID !Genre Name |- |Beginning MySQL Database Design and Optimization |Chad Russell |American |Hardcover |49.99 | {| class="wikitable" |MySQL |- |Database |- | Design |} |520 |Thick |Apress |USA |1 |Tutorial |} === Satisfying 1NF === In the [[first normal form]] each field contains a single value. A field may not contain a set of values or a nested record. '''Subject''' contains a set of subject values, meaning it does not comply. To solve the problem, the subjects are extracted into a separate '''Subject''' table:<ref name=":0" /> {| class="wikitable" |+Book !<u>Title</u> !Author !Author Nationality !<u>Format</u> !Price !Pages !Thickness !Publisher !Publisher Country !Genre ID !Genre Name |-= |Beginning MySQL Database Design and Optimization |Chad Russell |American |Hardcover |49.99 |520 |Thick |Apress |USA |1 |Tutorial |} {| class="wikitable" |+'''Title - Subject''' !'''<u>Title</u>''' !'''<u>Subject name</u>''' |- |Beginning MySQL Database Design and Optimization |MySQL |- |Beginning MySQL Database Design and Optimization |Database |- |Beginning MySQL Database Design and Optimization |Design |} Instead of one table in [[unnormalized form]], there are now two tables conforming to the 1NF. === Satisfying 2NF === Recall that the '''Book''' table below has a [[composite key]] of '''{Title, Format}''', which will not satisfy 2NF if some subset of that key is a determinant. At this point in our design the '''key''' is not finalized as the [[primary key]], so it is called a [[candidate key]]. Consider the following table: {| class="wikitable" |+Book !<u>Title</u> !<u>Format</u> !Author !Author Nationality !Price !Pages !Thickness !Publisher !Publisher Country !Genre ID !Genre Name |- |Beginning MySQL Database Design and Optimization |Hardcover |Chad Russell |American |49.99 |520 |Thick |Apress |USA |1 |Tutorial |- |Beginning MySQL Database Design and Optimization |E-book |Chad Russell |American |22.34 |520 |Thick |Apress |USA |1 |Tutorial |- |The Relational Model for Database Management: Version 2 |E-book |E.F.Codd |British |13.88 |538 |Thick |Addison-Wesley |USA |2 |Popular science |- |The Relational Model for Database Management: Version 2 |Paperback |E.F.Codd |British |39.99 |538 |Thick |Addison-Wesley |USA |2 |Popular science |} All of the attributes that are not part of the candidate key depend on ''Title'', but only ''Price'' also depends on ''Format''. To conform to [[Second normal form|2NF]] and remove duplicates, every non-candidate-key attribute must depend on the whole candidate key, not just part of it. To normalize this table, make '''{Title}''' a (simple) candidate key (the primary key) so that every non-candidate-key attribute depends on the whole candidate key, and remove ''Price'' into a separate table so that its dependency on ''Format'' can be preserved: {| class="wikitable" |+Book !<u>Title</u> !Author !Author Nationality !Pages !Thickness !Publisher !Publisher Country !Genre ID !Genre Name |- |Beginning MySQL Database Design and Optimization |Chad Russell |American |520 |Thick |Apress |USA |1 |Tutorial |- |The Relational Model for Database Management: Version 2 |E.F.Codd |British |538 |Thick |Addison-Wesley |USA |2 |Popular science |} {| class="wikitable" |+Price !<u>Title</u> !<u>Format</u> !Price |- |Beginning MySQL Database Design and Optimization |Hardcover |49.99 |- |Beginning MySQL Database Design and Optimization |E-book |22.34 |- |The Relational Model for Database Management: Version 2 |E-book |13.88 |- |The Relational Model for Database Management: Version 2 |Paperback |39.99 |} Now, both the '''Book''' and '''Price''' tables conform to [[Second normal form|2NF]]. === Satisfying 3NF === The '''Book''' table still has a transitive functional dependency ({Author Nationality} is dependent on {Author}, which is dependent on {Title}). Similar violations exist for publisher ({Publisher Country} is dependent on {Publisher}, which is dependent on {Title}) and for genre ({Genre Name} is dependent on {Genre ID}, which is dependent on {Title}). Hence, the '''Book''' table is not in 3NF. To resolve this, we can place {Author Nationality}, {Publisher Country}, and {Genre Name} in their own respective tables, thereby eliminating the transitive functional dependencies: {| class="wikitable" |+Book !<u>Title</u> !Author !Pages !Thickness !Publisher !Genre ID |- |Beginning MySQL Database Design and Optimization |Chad Russell |520 |Thick |Apress |1 |- |The Relational Model for Database Management: Version 2 |E.F.Codd |538 |Thick |Addison-Wesley |2 |} {| | {| class="wikitable" |+Price !<u>Title</u> !<u>Format</u> !Price |- |Beginning MySQL Database Design and Optimization |Hardcover |49.99 |- |Beginning MySQL Database Design and Optimization |E-book |22.34 |- |The Relational Model for Database Management: Version 2 |E-book |13.88 |- |The Relational Model for Database Management: Version 2 |Paperback |39.99 |} |} {| class="wikitable" |+Author !<u>Author</u> !Author Nationality |- |Chad Russell |American |- |E.F.Codd |British |} {| class="wikitable" |+Publisher !<u>Publisher</u> !Country |- |Apress |USA |- |Addison-Wesley |USA |} {| class="wikitable" |+Genre !<u>Genre ID</u> !Name |- |1 |Tutorial |- |2 |Popular science |} === Satisfying EKNF === {{Main|Elementary key normal form}} The elementary key normal form (EKNF) falls strictly between 3NF and BCNF and is not much discussed in the literature. It is intended ''"to capture the salient qualities of both 3NF and BCNF"'' while avoiding the problems of both (namely, that 3NF is "too forgiving" and BCNF is "prone to computational complexity"). Since it is rarely mentioned in literature, it is not included in this example. === Satisfying 4NF === Assume the database is owned by a book retailer franchise that has several franchisees that own shops in different locations. And therefore the retailer decided to add a table that contains data about availability of the books at different locations: {| class="wikitable" |+ align="top" |'''Franchisee - Book - Location''' !<u>Franchisee ID</u> !<u>Title</u> !<u>Location</u> |- |1 |Beginning MySQL Database Design and Optimization |California |- |1 |Beginning MySQL Database Design and Optimization |Florida |- |1 |Beginning MySQL Database Design and Optimization |Texas |- |1 |The Relational Model for Database Management: Version 2 |California |- |1 |The Relational Model for Database Management: Version 2 |Florida |- |1 |The Relational Model for Database Management: Version 2 |Texas |- |2 |Beginning MySQL Database Design and Optimization |California |- |2 |Beginning MySQL Database Design and Optimization |Florida |- |2 |Beginning MySQL Database Design and Optimization |Texas |- |2 |The Relational Model for Database Management: Version 2 |California |- |2 |The Relational Model for Database Management: Version 2 |Florida |- |2 |The Relational Model for Database Management: Version 2 |Texas |- |3 |Beginning MySQL Database Design and Optimization |Texas |- |} As this table structure consists of a [[Compound key|compound primary key]], it doesn't contain any non-key attributes and it's already in [[BoyceβCodd normal form|BCNF]] (and therefore also satisfies all the previous [[Database normalization#Normal forms|normal forms]]). However, assuming that all available books are offered in each area, the '''Title''' is not unambiguously bound to a certain '''Location''' and therefore the table doesn't satisfy [[Fourth normal form|4NF]]. That means that, to satisfy the [[fourth normal form]], this table needs to be decomposed as well: {| | {| class="wikitable" |+ align="top" |'''Franchisee - Book''' !<u>Franchisee ID</u> !<u>Title</u> |- |1 |Beginning MySQL Database Design and Optimization |- |1 |The Relational Model for Database Management: Version 2 |- |2 |Beginning MySQL Database Design and Optimization |- |2 |The Relational Model for Database Management: Version 2 |- |3 |Beginning MySQL Database Design and Optimization |- |} | {| class="wikitable" |+ align="top" |Franchisee - Location !<u>Franchisee ID</u> !<u>Location</u> |- |1 |California |- |1 |Florida |- |1 |Texas |- |2 |California |- |2 |Florida |- |2 |Texas |- |3 |Texas |- |} |} Now, every record is unambiguously identified by a [[superkey]], therefore [[4NF]] is satisfied. === Satisfying ETNF === Suppose the franchisees can also order books from different suppliers. Let the relation also be subject to the following constraint: * If a certain '''supplier''' supplies a certain '''title''' * and the '''title''' is supplied to the '''franchisee''' * and the '''franchisee''' is being supplied by the '''supplier,''' * then the '''supplier''' supplies the '''title''' to the '''franchisee'''.<ref name=":2">{{Cite book|url=https://books.google.com/books?id=Jx5UCwAAQBAJ&q=etnf%20normalization&pg=PT138|title=The New Relational Database Dictionary: Terms, Concepts, and Examples|last=Date|first=C. J.|date=December 21, 2015|publisher="O'Reilly Media, Inc."|isbn=9781491951699|pages=138|language=en}}</ref> {| class="wikitable" |+Supplier - Book - Franchisee !<u>Supplier ID</u> !<u>Title</u> !<u>Franchisee ID</u> |- |1 |Beginning MySQL Database Design and Optimization |1 |- |2 |The Relational Model for Database Management: Version 2 |2 |- |3 |Learning SQL |3 |} This table is in [[Fourth normal form|4NF]], but the Supplier ID is equal to the join of its projections: '''<nowiki>{{Supplier ID, Title}, {Title, Franchisee ID}, {Franchisee ID, Supplier ID}}</nowiki>.''' No component of that join dependency is a [[superkey]] (the sole superkey being the entire heading), so the table does not satisfy the [[Essential tuple normal form|ETNF]] and can be further decomposed:<ref name=":2" /> {| | {| class="wikitable" |+Supplier - Book !<u>Supplier ID</u> !<u>Title</u> |- |1 |Beginning MySQL Database Design and Optimization |- |2 |The Relational Model for Database Management: Version 2 |- |3 |Learning SQL |} | {| class="wikitable" |+Book - Franchisee !<u>Title</u> !<u>Franchisee ID</u> |- |Beginning MySQL Database Design and Optimization |1 |- |The Relational Model for Database Management: Version 2 |2 |- |Learning SQL |3 |} | {| class="wikitable" |+Franchisee - Supplier !<u>Supplier ID</u> !<u>Franchisee ID</u> |- |1 |1 |- |2 |2 |- |3 |3 |} |} The decomposition produces ETNF compliance. === Satisfying 5NF === To spot a table not satisfying the [[Fifth normal form|5NF]], it is usually necessary to examine the data thoroughly. Suppose the table from [[Database normalization#Satisfying 4NF|4NF example]] with a little modification in data and let's examine if it satisfies [[Fifth normal form|5NF]]: {| class="wikitable" |+ align="top" |'''Franchisee - Book - Location''' !<u>Franchisee ID</u> !<u>Title</u> !<u>Location</u> |- |1 |Beginning MySQL Database Design and Optimization |California |- |1 |Learning SQL |California |- |1 |The Relational Model for Database Management: Version 2 |Texas |- |2 |The Relational Model for Database Management: Version 2 |California |- |} Decomposing this table lowers redundancies, resulting in the following two tables: {| | {| class="wikitable" |+ align="top" |'''Franchisee - Book''' !<u>Franchisee ID</u> !<u>Title</u> |- |1 |Beginning MySQL Database Design and Optimization |- |1 |Learning SQL |- |1 |The Relational Model for Database Management: Version 2 |- |2 |The Relational Model for Database Management: Version 2 |- |} | {| class="wikitable" |+ align="top" |'''Franchisee - Location''' !<u>Franchisee ID</u> !<u>Location</u> |- |1 |California |- |1 |Texas |- |2 |California |- |} |} The query joining these tables would return the following data: {| class="wikitable" |+ align="top" |'''Franchisee - Book - Location JOINed''' !<u>Franchisee ID</u> !<u>Title</u> !<u>Location</u> |- |1 |Beginning MySQL Database Design and Optimization |California |- |1 |Learning SQL |California |- |<span style="color:red">1</span> |<span style="color:red">The Relational Model for Database Management: Version 2</span> |<span style="color:red">California</span> |- |1 |The Relational Model for Database Management: Version 2 |Texas |- |<span style="color:red">1</span> |<span style="color:red">Learning SQL</span> |<span style="color:red">Texas</span> |- |<span style="color:red">1</span> |<span style="color:red">Beginning MySQL Database Design and Optimization</span> |<span style="color:red">Texas</span> |- |2 |The Relational Model for Database Management: Version 2 |California |- |} The JOIN returns three more rows than it should; adding another table to clarify the relation results in three separate tables: <br /> {| | {| class="wikitable" |+ align="top" |'''Franchisee - Book''' !<u>Franchisee ID</u> !<u>Title</u> |- |1 |Beginning MySQL Database Design and Optimization |- |1 |Learning SQL |- |1 |The Relational Model for Database Management: Version 2 |- |2 |The Relational Model for Database Management: Version 2 |- |} | {| class="wikitable" |+ align="top" |'''Franchisee - Location''' !<u>Franchisee ID</u> !<u>Location</u> |- |1 |California |- |1 |Texas |- |2 |California |- |} | {| class="wikitable" |+ align="top" |'''Location - Book''' !<u>Location</u> !<u>Title</u> |- |California |Beginning MySQL Database Design and Optimization |- |California |Learning SQL |- |California |The Relational Model for Database Management: Version 2 |- |Texas |The Relational Model for Database Management: Version 2 |- |} |} What will the JOIN return now? It actually is not possible to join these three tables. That means it wasn't possible to decompose the '''Franchisee - Book - Location''' without data loss, therefore the table already satisfies [[5NF]]. '''Disclaimer''' - the data used demonstrates the principal, but fails to remain true. In this case the data would best be decomposed into the following, with a surrogate key which we will call 'Store ID': {| | {| class="wikitable" |+ align="top" |'''Store - Book''' !<u>Store ID</u> !<u>Title</u> |- |1 |Beginning MySQL Database Design and Optimization |- |1 |Learning SQL |- |2 |The Relational Model for Database Management: Version 2 |- |3 |The Relational Model for Database Management: Version 2 |- |} | {| class="wikitable" |+ align="top" |'''Store - Franchisee - Location''' !<u>Store ID</u> !Franchisee ID !Location |- |1 |1 |California |- |2 |1 |Texas |- |3 |2 |California |- |} | |} The JOIN will now return the expected result: {| class="wikitable" |+ align="top" |'''Store - Book - Franchisee - Location JOINed''' !<u>Store ID</u> !<u>Title</u> !<u>Franchisee ID</u> !<u>Location</u> |- |1 |Beginning MySQL Database Design and Optimization |1 |California |- |1 |Learning SQL |1 |California |- |2 |The Relational Model for Database Management: Version 2 |1 |Texas |- |3 |The Relational Model for Database Management: Version 2 |2 |California |- |} [[Christopher J. Date|C.J. Date]] has argued that only a database in 5NF is truly "normalized".<ref>{{Cite book|url=https://books.google.com/books?id=Jx5UCwAAQBAJ&q=etnf%20normalization&pg=PT163|title=The New Relational Database Dictionary: Terms, Concepts, and Examples|last=Date|first=C. J.|date=December 21, 2015|publisher="O'Reilly Media, Inc."|isbn=9781491951699|pages=163|language=en}}</ref> === Satisfying DKNF === Let's have a look at the '''Book''' table from previous examples and see if it satisfies the [[domain-key normal form]]: {| class="wikitable" |+Book !<u>Title</u> !'''Pages''' !Thickness !''Genre ID'' !''Publisher ID'' |- |Beginning MySQL Database Design and Optimization |520 |Thick |''1'' |''1'' |- |The Relational Model for Database Management: Version 2 |538 |Thick |''2'' |''2'' |- |Learning SQL |338 |Slim |''1'' |''3'' |- |SQL Cookbook |636 |Thick |''1'' |''3'' |} Logically, '''Thickness''' is determined by number of pages. That means it depends on '''Pages''' which is not a key. Let's set an example convention saying a book up to 350 pages is considered "slim" and a book over 350 pages is considered "thick". This convention is technically a constraint but it is neither a domain constraint nor a key constraint; therefore we cannot rely on domain constraints and key constraints to keep the data integrity. In other words β nothing prevents us from putting, for example, "Thick" for a book with only 50 pages β and this makes the table violate [[Domain-key normal form|DKNF]]. To solve this, a table holding enumeration that defines the '''Thickness''' is created, and that column is removed from the original table: {| | {| class="wikitable" |+Thickness Enum !<u>Thickness</u> !Min pages !Max pages |- |Slim |1 |350 |- |Thick |351 |999,999,999,999 |} | {| class="wikitable" |+Book - Pages - Genre - Publisher !<u>Title</u> !Pages !''Genre ID'' !''Publisher ID'' |- |Beginning MySQL Database Design and Optimization |520 |''1'' |''1'' |- |The Relational Model for Database Management: Version 2 |538 |''2'' |''2'' |- |Learning SQL |338 |''1'' |''3'' |- |SQL Cookbook |636 |''1'' |''3'' |} |} That way, the domain integrity violation has been eliminated, and the table is in [[Domain-key normal form|DKNF]]. === Satisfying 6NF === A simple and intuitive definition of the [[sixth normal form]] is that ''"a table is in [[Sixth normal form|6NF]] when '''the row contains the Primary Key, and at most one other attribute"'''''<nowiki/>'''.'''<ref>{{Cite web|url=https://stackoverflow.com/questions/4824714/would-like-to-understand-6nf-with-an-example|title=normalization - Would like to Understand 6NF with an Example|website=Stack Overflow|access-date=2019-01-23}}</ref> That means, for example, the '''Publisher''' table designed while [[#Satisfying_1NF|creating the 1NF]]: {| class="wikitable" |+Publisher !Publisher ID !Name !Country |- |1 |Apress |USA |} needs to be further decomposed into two tables: {| | {| class="wikitable" |+Publisher !Publisher ID !Name |- |1 |Apress |} | {| class="wikitable" |+Publisher country !Publisher ID !Country |- |1 |USA |} |} The obvious drawback of 6NF is the proliferation of tables required to represent the information on a single entity. If a table in 5NF has one primary key column and N attributes, representing the same information in 6NF will require N tables; multi-field updates to a single conceptual record will require updates to multiple tables; and inserts and deletes will similarly require operations across multiple tables. For this reason, in databases intended to serve [[online transaction processing]] (OLTP) needs, 6NF should not be used. However, in [[data warehouses]], which do not permit interactive updates and which are specialized for fast query on large data volumes, certain DBMSs use an internal 6NF representation β known as a [[Column-oriented DBMS|columnar data store]]. In situations where the number of unique values of a column is far less than the number of rows in the table, column-oriented storage allow significant savings in space through data compression. Columnar storage also allows fast execution of range queries (e.g., show all records where a particular column is between X and Y, or less than X.) In all these cases, however, the database designer does not have to perform 6NF normalization manually by creating separate tables. Some DBMSs that are specialized for warehousing, such as [[Sybase IQ]], use columnar storage by default, but the designer still sees only a single multi-column table. Other DBMSs, such as Microsoft SQL Server 2012 and later, let you specify a "columnstore index" for a particular table.<ref>Microsoft Corporation. Columnstore Indexes: Overview. https://docs.microsoft.com/en-us/sql/relational-databases/indexes/columnstore-indexes-overview . Accessed March 23, 2020.</ref>
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)