This Assignment will allow you to demonstrate practical knowledge of supertype/subtype concepts and will have you create an ERD with supertype/subtype constructs and required attributes.
Define each of the following terms. In addition, provide an example of each term.
Figure: see image.
1. List the attributes for Author. List the attributes for Employee.
2. For each entity in the diagram, state whether it is a supertype, a subtype, or neither.
3. Answer the questions below:
4. Assume there is a "manages" relationship in which an Employee manages an Author. State the business rules for the relationship. Modify the ERD to reflect this relationship. Note that a single attribute may have only one FK constraint.
The Diagnostic Radiology Service provides radiology procedures for outpatients. Use the entity descriptions and Business Rules described below to develop an ERD. Please break composite keys such as Name and Address into the appropriate fields. Please identify PK, FK and Hierarchy Constraints and all relationships within the ERD.
Entities
Person
ReferringPhysician
Patient
Employee
Technician
Radiologist
Visit
RadiologyProcedure
Person is a supertype.
Subtypes: ReferringPhysician, Patient
A Person is not employed by the organization. A Person must be at least one of the following:
Referring Physician or Patient. A Person can be both.
Employee is a supertype.
Subtypes: Technician, Radiologist
An Employee is a Technician, or a Radiologist, or an Administrative Staff.
Patient to ReferringPhysician
Patient to Visit
Visit to RadiologyProcedure
Radiologist to VisitProcedure
Technician to VisitProcedure