ERD Examples
Last updated
Was this helpful?
Last updated
Was this helpful?
We have a university where a Student enrolls in courses. A Student must be assigned to at least one or more Courses. Each Course is taught by a single Professor. A Professor can deliver only one course.
Student
Course
Professor
Student is assigned a course
Professor teaches a course
A student can be assigned multiple courses
A course can be enrolled by multiple students
A professor can deliver only one course
Student: StudentId, StudentName, StudentAge
Course: CourseID, CourseName
Professor: EmployeeId, ProfessorName, EmployeeAge
Note the underlined primary key attribute