Presentation is loading. Please wait.

Presentation is loading. Please wait.

1 Translating E/R Diagrams into Relational Schemas.

Similar presentations


Presentation on theme: "1 Translating E/R Diagrams into Relational Schemas."— Presentation transcript:

1 1 Translating E/R Diagrams into Relational Schemas

2 2 Translating Entity Sets v Include all attributes of the entity set and use the entity set’s key as the primary key. v Example : The Author entity set CREATE TABLE Authors (name CHAR (30), phone CHAR (20), address CHAR(20), DOB DATE, PRIMARY KEY (name, phone))

3 3 Translating M-N Relationship Sets v Attributes of the relation must include: – Keys for each participating entity set (as foreign keys). u This set of attributes forms a key for the relation. – All descriptive attributes. v Ignore participation constraints for now!! CREATE TABLE Wrote( isbn CHAR (11), name CHAR(30), phone CHAR(20), done DATE, PRIMARY KEY (isbn, name, phone), FOREIGN KEY (isbn) REFERENCES Books (isbn), FOREIGN KEY (name, phone) REFERENCES Authors (name, phone))

4 4 Translating M-1 or 1-M Relationship Sets v Key of unconstrained entity goes into relation for entity with the key constraint v Descriptive attributes of relationship also go into relation for entity with the key constraint v Example : Books table and “publish” relationship: CREATE TABLE Books ( isbn CHAR(11), title CHAR(20), pubname CHAR(25), pubdate DATE, PRIMARY KEY (isbn), FOREIGN KEY (pubname) REFERENCES Publishers (name))

5 5 Translating 1-1 Relationship Sets v Key of one entity goes into relation for other entity, along with the descriptive attributes of relationship v Choice is up to DBA and is application-dependent v Example : Publishers, Editors tables and “edits” relationship: CREATE TABLE Publishers ( name CHAR(25), address CHAR(20), URL CHAR(50), PRIMARY KEY (name) ) CREATE TABLE Editors ( name CHAR(30), phone CHAR(20), pubname CHAR(25), hours INTEGER, PRIMARY KEY (name), FOREIGN KEY (pubname) REFERENCES Publishers (name) )

6 6 Participation Constraints in SQL v Capture using NOT NULL if: –Entity with the participation constraint also has a key constraint for the same relationship AND –Relation for the constrained entity contains a foreign key for the related entity. v Examples : – Books-Publish participation constraint: u CREATE TABLE Books (….pubname CHAR(25) NOT NULL, ….) – Authors-Wrote participation constraint: u Needs an ASSERTION or TRIGGER (later in course… needs SQL!) – Publisher-Edits participation constraint: u Re-design Publishers/Editors and use NOT NULL OR use an ASSERTION or TRIGGER

7 7 Translating Weak Entity Sets v Weak entity set and identifying relationship set are translated into a single table. – When the owner (strong) entity is deleted, all owned weak entities must also be deleted. CREATE TABLE Dependents ( aname CHAR(30), dname CHAR(20), age INTEGER, PRIMARY KEY (aname, dname), FOREIGN KEY (aname) REFERENCES Authors(name), ON DELETE CASCADE )

8 8 Relational Query Languages v A major strength of the relational model: supports simple, powerful querying of data. v Queries can be written intuitively, and the DBMS is responsible for efficient evaluation. – The key: precise semantics for relational queries. – Allows the optimizer to extensively re-order operations, and still ensure that the answer does not change.

9 9 The SQL Query Language v To find all 18 year old students, we can write: SELECT * FROM Students WHERE age=18 To find just names and logins, replace the first line: SELECT name, login

10 10 Querying Multiple Relations v What does the following query compute? SELECT S.name, E.cid FROM Students S, Enrolled E WHERE S.sid=E.sid AND E.grade=“A” Given the following instance of Enrolled: we get:

11 11 E/R to Relations: Summary v Entity set  Relation v M-N Relationship  Relation (keys of related entities plus relationship attributes) v 1-M or M-1 Relationship : Table for entity with key constraint gets key of other table plus relationship attributes v 1-1 Relationship : Table for one entity gets key of the other plus relationship attributes v Powerful and natural relational query languages exist. v The resultant relational schema may have some nasty properties…. We’ll soon learn how to fix these.


Download ppt "1 Translating E/R Diagrams into Relational Schemas."

Similar presentations


Ads by Google