Access Database design when changing course fee after certain period of time -
i have 3 tables:
student
id (pk) name
course
id (pk) course_name course_duration course_fee
student_course
student_course_id (pk) student_id (fk) course_id (fk)
if after period of time course fee changes how can maintain record of student having previous course fee?
logically copy enrolments table (student_course). supposes price not change after registration.
Comments
Post a Comment