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
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!
{{Short description|Reduction of data redundancy}} {{Use American English|date = February 2019}} {{Use mdy dates|date=December 2022}} {{Expert needed|databases|talk=Expanding on normal forms & clarifying terminology|date=March 2018}} '''Database normalization''' is the process of structuring a [[relational database]] in accordance with a series of so-called '''''[[#Normal forms|normal forms]]''''' in order to reduce [[data redundancy]] and improve [[data integrity]]. It was first proposed by [[British people|British]] [[computer scientist]] [[Edgar F. Codd]] as part of his [[relational model]]. Normalization entails organizing the [[column (database)|columns]] (attributes) and [[relation (database)|tables]] (relations) of a database to ensure that their [[Dependency theory (database theory)|dependencies]] are properly enforced by database integrity constraints. It is accomplished by applying some formal rules either by a process of ''synthesis'' (creating a new database design) or ''decomposition'' (improving an existing database design). == Objectives == A basic objective of the first normal form defined by Codd in 1970 was to permit data to be queried and manipulated using a "universal data sub-language" grounded in [[first-order logic]].<ref>"The adoption of a relational model of data ... permits the development of a universal data sub-language based on an applied predicate calculus. A first-order predicate calculus suffices if the collection of relations is in normal form. Such a language would provide a yardstick of linguistic power for all other proposed data languages, and would itself be a strong candidate for embedding (with appropriate syntactic modification) in a variety of host languages (programming, command- or problem-oriented)." Codd, [https://dl.acm.org/doi/10.1145/362384.362685 "A Relational Model of Data for Large Shared Data Banks"] {{Webarchive|url=https://web.archive.org/web/20070612235326/http://www.acm.org/classics/nov95/toc.html |date=June 12, 2007 }}, p. 381</ref> An example of such a language is [[SQL]], though it is one that Codd regarded as seriously flawed.<ref>Codd, E.F. Chapter 23, [https://dl.acm.org/doi/10.5555/77708.C1065772 "Serious Flaws in SQL"], in ''The Relational Model for Database Management: Version 2''. Addison-Wesley (1990), pp. 371–389</ref> The objectives of normalization beyond 1NF (first normal form) were stated by Codd as: {{Blockquote| # To free the collection of relations from undesirable insertion, update and deletion dependencies. # To reduce the need for restructuring the collection of relations, as new types of data are introduced, and thus increase the life span of application programs. # To make the relational model more informative to users. # To make the collection of relations neutral to the query statistics, where these statistics are liable to change as time goes by. |E.F. Codd|"Further Normalisation of the Data Base Relational Model"<ref>Codd, E.F. "Further Normalisation of the Data Base Relational Model", p. 34</ref>}} [[File:Insertion anomaly.svg|thumb|280px|An '''insertion anomaly'''. Until the new faculty member, Dr. Newsome, is assigned to teach at least one course, their details cannot be recorded.]] [[File:Update anomaly.svg|thumb|280px|An '''update anomaly'''. Employee 519 is shown as having different addresses on different records.]] [[File:Deletion anomaly.svg|thumb|280px|A '''deletion anomaly'''. All information about Dr. Giddens is lost if they temporarily cease to be assigned to any courses.]] When an attempt is made to modify (update, insert into, or delete from) a relation, the following undesirable side effects may arise in relations that have not been sufficiently normalized: ;Insertion anomaly: There are circumstances in which certain facts cannot be recorded at all. For example, each record in a "Faculty and Their Courses" relation might contain a Faculty ID, Faculty Name, Faculty Hire Date, and Course Code. Therefore, the details of any faculty member who teaches at least one course can be recorded, but a newly hired faculty member who has not yet been assigned to teach any courses cannot be recorded, except by setting the Course Code to [[null (SQL)|null]]. ;Update anomaly: The same information can be expressed on multiple rows; therefore updates to the relation may result in logical inconsistencies. For example, each record in an "Employees' Skills" relation might contain an Employee ID, Employee Address, and Skill; thus a change of address for a particular employee may need to be applied to multiple records (one for each skill). If the update is only partially successful – the employee's address is updated on some records but not others – then the relation is left in an inconsistent state. Specifically, the relation provides conflicting answers to the question of what this particular employee's address is. ;Deletion anomaly: Under certain circumstances, the deletion of data representing certain facts necessitates the deletion of data representing completely different facts. The "Faculty and Their Courses" relation described in the previous example suffers from this type of anomaly, for if a faculty member temporarily ceases to be assigned to any courses, the last of the records on which that faculty member appears must be deleted, effectively also deleting the faculty member, unless the Course Code field is set to null. === Minimize redesign when extending the database structure === A fully normalized database allows its structure to be extended to accommodate new types of data without changing existing structure too much. As a result, applications interacting with the database are minimally affected. Normalized relations, and the relationship between one normalized relation and another, mirror real-world concepts and their interrelationships. == Normal forms == Codd introduced the concept of normalization and what is now known as the [[first normal form]] (1NF) in 1970.<ref name="Codd1970">{{cite journal |first=E. F. |last=Codd |author-link=Edgar F. Codd |title=A Relational Model of Data for Large Shared Data Banks |journal=[[Communications of the ACM]] |volume=13 |issue=6 |date=June 1970 |pages=377–387 |doi=10.1145/362384.362685 |s2cid=207549016 |doi-access=free }}</ref> Codd went on to define the [[second normal form]] (2NF) and [[third normal form]] (3NF) in 1971,<ref name="Codd, E.F 1971">Codd, E. F. "Further Normalization of the Data Base Relational Model". (Presented at Courant Computer Science Symposia Series 6, "Data Base Systems", New York City, May 24–25, 1971.) IBM Research Report RJ909 (August 31, 1971). Republished in Randall J. Rustin (ed.), ''Data Base Systems: Courant Computer Science Symposia Series 6''. Prentice-Hall, 1972.</ref> and Codd and [[Raymond F. Boyce]] defined the [[Boyce–Codd normal form]] (BCNF) in 1974.<ref name="CoddBCNF">Codd, E. F. "Recent Investigations into Relational Data Base Systems". IBM Research Report RJ1385 (April 23, 1974). Republished in ''Proc. 1974 Congress'' (Stockholm, Sweden, 1974), N.Y.: North-Holland (1974).</ref> [[Ronald Fagin]] introduced the [[fourth normal form]] (4NF) in 1977 and the [[fifth normal form]] (5NF) in 1979. [[Christopher J. Date]] introduced the [[sixth normal form]] (6NF) in 2003. Informally, a relational database relation is often described as "normalized" if it meets third normal form.<ref name="DateIntroDBSys">{{cite book |first=C. J. |last=Date |title=An Introduction to Database Systems |publisher=Addison-Wesley |year=1999 |page=290}}</ref> Most 3NF relations are free of insertion, updation, and deletion anomalies. The normal forms (from least normalized to most normalized) are: {{columns-list|colwidth=20em| * UNF: [[Unnormalized form]] * 1NF: [[First normal form]] * 2NF: [[Second normal form]] * 3NF: [[Third normal form]] * EKNF: [[Elementary key normal form]] * BCNF: [[Boyce–Codd normal form]] * 4NF: [[Fourth normal form]] * ETNF: [[Essential tuple normal form]] * 5NF: [[Fifth normal form]] * DKNF: [[Domain-key normal form]] * 6NF: [[Sixth normal form]] }} {| class="wikitable" ! Constraint<br><span style="font-weight:normal">{{small|(informal description in parentheses)}}</span> ! scope="col" | [[Unnormalized form|UNF]]<br><span style="font-weight:normal">{{small|(1970)}}</span> ! scope="col" | [[First normal form|1NF]] <br><span style="font-weight:normal">{{small|(1970)}}</span> ! scope="col" | [[Second normal form|2NF]] <br><span style="font-weight:normal">{{small|(1971)}}</span> ! scope="col" | [[Third normal form|3NF]] <br><span style="font-weight:normal">{{small|(1971)}}</span> ! scope="col" | [[Elementary key normal form|EKNF]]<br><span style="font-weight:normal">{{small|(1982)}}</span> ! scope="col" | [[Boyce–Codd normal form|BCNF]]<br><span style="font-weight:normal">{{small|(1974)}}</span> ! scope="col" | [[Fourth normal form|4NF]] <br><span style="font-weight:normal">{{small|(1977)}}</span> ! scope="col" | [[Essential tuple normal form|ETNF]] <br><span style="font-weight:normal">{{small|(2012)}}</span> ! scope="col" | [[Fifth normal form|5NF]] <br><span style="font-weight:normal">{{small|(1979)}}</span> ! scope="col" | [[Domain-key normal form|DKNF]] <br><span style="font-weight:normal">{{small|(1981)}}</span> ! scope="col" | [[Sixth normal form|6NF]] <br><span style="font-weight:normal">{{small|(2003)}}</span> |- | Unique rows (no duplicate records)<ref name="Codd1970" /> || {{MaybeCheck}} || {{ya}} || {{ya}} || {{ya}} || {{ya}} || {{ya}} || {{ya}} || {{ya}} || {{ya}} || {{ya}} || {{ya}} |- | Scalar columns (columns cannot contain relations or composite values)<ref name="Codd, E.F 1971" /> || {{na}} || {{ya}} || {{ya}} || {{ya}} || {{ya}} || {{ya}} || {{ya}} || {{ya}} || {{ya}} || {{ya}} || {{ya}} |- | Every non-prime attribute has a full [[functional dependency]] on each [[candidate key]] (attributes depend on the ''whole'' of every key)<ref name="Codd, E.F 1971" /> || {{na}} || {{na}} || {{ya}} || {{ya}} || {{ya}} || {{ya}} || {{ya}} || {{ya}} || {{ya}} || {{ya}} || {{ya}} |- | Every non-trivial functional dependency either begins with a [[superkey]] or ends with a prime attribute (attributes depend ''only'' on candidate keys)<ref name="Codd, E.F 1971" /> || {{na}} || {{na}} || {{na}} || {{ya}} || {{ya}} || {{ya}} || {{ya}} || {{ya}} || {{ya}} || {{ya}} || {{ya}} |- | Every non-trivial functional dependency either begins with a superkey or ends with an [[Elementary key normal form|elementary prime attribute]] (a stricter form of 3NF)|| {{na}} || {{na}} || {{na}} || {{na}} || {{ya}} || {{ya}} || {{ya}} || {{ya}} || {{ya}} || {{ya}} || {{n/a}} |- | Every non-trivial functional dependency begins with a superkey (a stricter form of 3NF)|| {{na}} || {{na}} || {{na}} || {{na}} || {{na}} || {{ya}} || {{ya}} || {{ya}} || {{ya}} || {{ya}} || {{n/a}} |- | Every non-trivial [[multivalued dependency]] begins with a superkey || {{na}} || {{na}} || {{na}} || {{na}} || {{na}} || {{na}} || {{ya}} || {{ya}} || {{ya}} || {{ya}} || {{n/a}} |- | Every [[join dependency]] has a superkey component<ref>{{cite conference |url=https://researcher.watson.ibm.com/researcher/files/us-fagin/icdt12.pdf |archive-url=https://web.archive.org/web/20160306173449/http://researcher.watson.ibm.com/researcher/files/us-fagin/icdt12.pdf |archive-date=2016-03-06 |url-status=live |title=A Normal Form for Preventing Redundant Tuples in Relational Databases |first1=Hugh |last1=Darwen |first2=C. J. |last2=Date |first3=Ronald |last3=Fagin |year=2012 |conference=EDBT/ICDT 2012 Joint Conference |conference-url=http://edbticdt2012.dima.tu-berlin.de/ |book-title=Proceedings of the 15th International Conference on Database Theory |publisher=[[Association for Computing Machinery]] |series=ACM International Conference Proceeding Series |isbn=978-1-4503-0791-8 |oclc=802369023 |doi=10.1145/2274576.2274589 |access-date=2018-05-22 |page=114}}</ref> || {{na}} || {{na}} || {{na}} || {{na}} || {{na}} || {{na}} || {{na}} || {{ya}} || {{ya}} || {{ya}} || {{n/a}} |- | Every join dependency has only superkey components || {{na}} || {{na}} || {{na}} || {{na}} || {{na}} || {{na}} || {{na}} || {{na}} || {{ya}} || {{ya}} || {{n/a}} |- | Every constraint is a consequence of domain constraints and key constraints || {{na}} || {{na}} || {{na}} || {{na}} || {{na}} || {{na}} || {{na}} || {{na}} || {{na}} || {{ya}} || {{na}} |- | Every join dependency is trivial || {{na}} || {{na}} || {{na}} || {{na}} || {{na}} || {{na}} || {{na}} || {{na}} || {{na}} || {{na}} || {{ya}} |} == 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> == See also == * [[Denormalization]] * [[Database refactoring]] * [[Lossless join decomposition]] == Notes and references == {{Reflist}} {{refbegin}} {{refend}} == Further reading == * Date, C. J. (1999), ''[https://web.archive.org/web/20050404010227/http://www.aw-bc.com/catalog/academic/product/0%2C1144%2C0321197844%2C00.html An Introduction to Database Systems]'' (8th ed.). Addison-Wesley Longman. {{ISBN|0-321-19784-4}}. * Kent, W. (1983) ''[http://www.bkent.net/Doc/simple5.htm A Simple Guide to Five Normal Forms in Relational Database Theory]'', Communications of the ACM, vol. 26, pp. 120–125 * H.-J. Schek, P. Pistor Data Structures for an Integrated Data Base Management and Information Retrieval System ==External links== * {{cite journal |first= William |last=Kent |title=A Simple Guide to Five Normal Forms in Relational Database Theory |journal=Communications of the ACM |volume=26 |issue=2 |date=February 1983 |pages=120–125 |url=http://www.bkent.net/Doc/simple5.htm |doi=10.1145/358024.358054|s2cid=9195704 |doi-access=free }} * [http://databases.about.com/od/specificproducts/a/normalization.htm Database Normalization Basics] {{Webarchive|url=https://web.archive.org/web/20070205184226/http://databases.about.com/od/specificproducts/a/normalization.htm |date=February 5, 2007 }} by Mike Chapple (About.com) * [http://www.databasejournal.com/sqletc/article.php/1428511 Database Normalization Intro] {{Webarchive|url=https://web.archive.org/web/20110928000244/http://www.databasejournal.com/sqletc/article.php/1428511 |date=September 28, 2011 }}, [http://www.databasejournal.com/sqletc/article.php/26861_1474411_1 Part 2] {{Webarchive|url=https://web.archive.org/web/20110708233620/http://www.databasejournal.com/sqletc/article.php/26861_1474411_1 |date=July 8, 2011 }} * [http://mikehillyer.com/articles/an-introduction-to-database-normalization/ An Introduction to Database Normalization] by Mike Hillyer. * [http://phlonx.com/resources/nf3/ A tutorial on the first 3 normal forms] by Fred Coulson * [http://support.microsoft.com/kb/283878 Description of the database normalization basics] by Microsoft * [http://beginnersbook.com/2015/05/normalization-in-dbms/ Normalization in DBMS by Chaitanya (beginnersbook.com)] * [https://www.databasestar.com/normalization-in-dbms/ A Step-by-Step Guide to Database Normalization] * [http://researcher.watson.ibm.com/researcher/files/us-fagin/icdt12.pdf ETNF – Essential tuple normal form] {{Webarchive|url=https://web.archive.org/web/20160306173449/http://researcher.watson.ibm.com/researcher/files/us-fagin/icdt12.pdf |date=March 6, 2016 }} {{Database normalization}} {{Database}} {{Databases}} {{Authority control}} {{DEFAULTSORT:Database Normalization}} [[Category:Database normalization| ]] [[Category:Database constraints]] [[Category:Data management]] [[Category:Data modeling]] [[Category:Relational algebra]] [[Category:Database management systems]]
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)
Pages transcluded onto the current version of this page
(
help
)
:
Template:Authority control
(
edit
)
Template:Blockquote
(
edit
)
Template:Cite book
(
edit
)
Template:Cite conference
(
edit
)
Template:Cite journal
(
edit
)
Template:Cite web
(
edit
)
Template:Columns-list
(
edit
)
Template:Database
(
edit
)
Template:Database normalization
(
edit
)
Template:Databases
(
edit
)
Template:Expert needed
(
edit
)
Template:ISBN
(
edit
)
Template:Main
(
edit
)
Template:MaybeCheck
(
edit
)
Template:N/a
(
edit
)
Template:Na
(
edit
)
Template:Refbegin
(
edit
)
Template:Refend
(
edit
)
Template:Reflist
(
edit
)
Template:Short description
(
edit
)
Template:Small
(
edit
)
Template:Use American English
(
edit
)
Template:Use mdy dates
(
edit
)
Template:Webarchive
(
edit
)
Template:Ya
(
edit
)