Students Table:
Information about students.
ERD Course Registration Process
Courses Table:
Information about courses.
Professors Table:
Information about professors.
Registrations Table:
Represents the registration
process, linking students with the
courses they are registered for.
Sessions Table:
Represents different sessions or
class timings for courses
Students Table:
Attributes: StudentID (Primary Key), FirstName, LastName, Email, Birthdate, ...
Courses Table:
Attributes: CourseID (Primary Key), CourseName, Instructor, Credits, ...
Professors Table:
Attributes: ProfessorID (Primary Key), FirstName, LastName, Email, ...
Sessions Table:
Attributes: SessionID (Primary Key), CourseID (Foreign Key), ProfessorID (Foreign Key), DayOfWeek, TimeOfDay,
Classroom,...
Registrations Table:
Attributes: RegistrationID (Primary Key), StudentID (Foreign Key), SessionID (Foreign Key), Registration Date,