1 / 4

E-R to Relational - Basic

E-R to Relational - Basic. Strong entity Table with all attributes of that entity Relationships Table with primary keys of participating entities Weak entity Table with primary key of strong entity Multi-valued Attribute X Table with X, primary key of strong entity Row per value of X

cicely
Download Presentation

E-R to Relational - Basic

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. E-R to Relational - Basic • Strong entity • Table with all attributes of that entity • Relationships • Table with primary keys of participating entities • Weak entity • Table with primary key of strong entity • Multi-valued Attribute X • Table with X, primary key of strong entity • Row per value of X • Finally ..

  2. E-R to Relational - Improved • For N-1/1-1 relationships • Move relationship attributes to the N-side entity’s table • Dept id moves to employee. • No need for a table for the relationship relating a weak entity • Remove the “depends” table

  3. Emp-Dept ER Diagram Dept id name Manages department city state color Lic# car Supervises Start date Works for dependent supervisee supervisor reln employee name Supports Owns SSN Name address phones street city

  4. Emp-Dept schema • Employee(SSN, name, street, city, deptid, startdate, supervisor_ssn) • Dept(deptid, name, city, Manager-SSN) • Phone(SSN, phone#) • Dependent(EMP-SSN, Name, relation) • Car(state, license#, color) • CarOwners(owner-SSN, car-state, license#)

More Related