You are on page 1of 2

FirstName EndDate

EmployeeID LastName
StartDate JobID
Email
PhoneNumber

Employee Works Job


On
HireDate

Salary JobTitle
ManagerID

Works
In
CommissionPct

Department has

Case Study: The company keeps track of employees who


worked in a department. It stores each employee’s number,
firstname, lastname, email, phone number, hire date, salary
and commission percentage. Each department has a unique
name, unique number. The manager of each employee is
also recorded. An employee may be assigned to several jobs
DepartmentID DepartmentName which are not necessarily controlled by the department.
The start date and end date the employee works in each job
in a department is also kept.

ER Diagram CC 224 Information Management Janna Krista Kim Coyoca & Rolando Lima Jr. BSIT 2A February 28, 2024
TABLES
Employee ( EmployeeID PK, FirstName, LastName, Email, PhoneNumber, HireDate, Salary,
CommissionPct, ManagerID )

Department ( DepartmentID PK, DepartmentName, EmployeeID FK )

Job ( JobID PK, JobTitle, StartDate, EndDate, DepartmentID FK)

RELATIONSHIP
Binary Relationship
Employee and Department: An employee works in a department.
Employee and Job: An employee holds one or more jobs.
Department and Job: A department has one or more jobs.

ER Diagram CC 224 Information Management Janna Krista Kim Coyoca & Rolando Lima Jr. BSIT 2A February 28, 2024

You might also like