Relationship Database Design
Content
- Conceptual model - ERD
- Logical model - schema, data dictionary, attributes mapping, ...
- Physical model
E-R Diagram (Conceptual Model)
-
How should I write a relationship in the diamond?
Reading order: From left to right.
For example, an employee manages other employees. -
ERD could represent superclass-subclass relationships.
"O" is overlapping, meaning there could be overlapping between each subclass entities. (A manager could also be a salesperson)
Besides, we can use "D" for disjoint subclasses.
A single line between Employee and its subclasses implies an optinal participation (an employee may not belong to any subclass), while a double line implies a mandatory participation (an employee must be in one or more subclasses).
An U-like symbol identify subclasses by pointing to them. (the entity the bottom of "U" points to is a subclass)
Logical Model
Schema represents abstract (strong and weak) entities and associated attributes and necessary relationships between entities.
A schema looks like this:
STUDENT(
Stu_num, Stu_Lname, Stu_Fname, program_num@, age, gender)
(PK "Stu_num" should be underscored. I use italic instead)
Data dictionary contains metadata of attributes, with which you could understand the what, where, how, how much, who, when questions about data.
Normal Form
A good logical model should follow normal form of database.
-
UNF
Contains repeating values. -
1NF
Each cell in the table contains only one value (so that the table can be represented in a relational database). -
2NF
Satisfies 1NF;
No partial dependencies.
Meaning: A non-primary-key attribute cannot be dependent on part of primary-key.
For example, in R(
A B C D), if
(A+B) -> C, D,
(B) -> D,
D is partially dependent on primary key (A+B), thus not satisfying 2NF.
-
3NF
Satisfies 2NF;
No transitive dependencies.
Meaning: A non-primary-key attribute cannot determine non-primary-key attributes. (But a non-primary-key attribute can determine a primary-key attribute) -
BCNF
Satisfies 3NF;
No non-CK dependencies.
Another way to say this: For all functional dependencies exist in the table, all their determinants are candidate keys.
Meaning: the second and third normal forms normalize non-prime attributes, and BCNF normalizes relationships between prime attributes.
For example (a model in 3NF but not in BCNF)
In R(
A B C D), there are
(A+B) -> C, D;
(A+C) -> B, D;
(C) -> B.
With a non-primary-key attribute C determines primary-key attribute B, the model does not satisfy BCNF.
- 4NF
Satisfies BCNF;
No multi-value attributes.
作者:jin2017
連結:
來源:簡書
著作權歸作者所有。商業轉載請聯絡作者獲得授權,非商業轉載請註明出處。
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/14377/viewspace-2680817/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Relational Database Index Design and the OptimizersDatabaseIndex
- Tasks of a Database Administrator : Implement the Database Design (13)Database
- laravel model relationshipLaravel
- Relationship between BAPI and RFCAPI
- sqlalchemy中relationship使用SQL
- SAP Table Relationship of Material Classification
- Design and implementation of database anomaly monitoring system based on AI algorithmDatabaseAIGo
- 有對CMP relationship熟悉的朋友請進!
- SAP HUM 內向交貨單憑證流和Relationship Browser
- Design Systems 02 - 什麼是 Design Principles
- Material DesignMaterial Design
- design for failureAI
- Ant Design 官方《Ant Design 實戰教程》釋出
- standby database to primary database.Database
- Ant Design VueVue
- Responsive Web DesignWeb
- web design toolsWeb
- Material Design AnimationMaterial Design
- Effective Oracle by DesignOracle
- Material Design時代Material Design
- System design summary
- Design a Moore FSM
- System Design InterviewView
- STL and Design Pattern
- 無法新增某個relationship給SAP CRM Product category的一個可能原因Go
- The database owner SID recorded in the master database differs from the database owner SID recorded in database 'DB_NAME'DatabaseAST
- Object oriented design (OOD)Object
- design pattens - adapterAPT
- Material Design實戰Material Design
- SAP Fiori and Design Principles
- Design Pattern理解碎片
- 安卓Material Design(2)安卓Material Design
- 安卓Material Design(3)安卓Material Design
- 安卓Material Design(5)安卓Material Design
- Application Design BasicsAPP
- Design Principles: Lesson 2
- Design with static members (轉)
- Algorithms for Compiler DesignGoCompile