
Originally Posted by
orange
Yes, build a reference table, and use the reference table with appropriate relationships to your other tables to resolve queries.
Build your tables, 1 fact 1 field for flexibility. You can concatenate fields as you wish for display.
tblSemesterReference
SemesterRefID autonumber PK
SemesterName text
with (storage) values like
01
Spring Semester 2012
02
Summer Semester 2012
etc,
but you could go 1 step further
semID PK
SemName
SemYear
01
Spring Semester
2012
And for display 2012 Spring Semester or Semester -2012 - Spring or whatever you want.
Get your tables and relationships designed to meet your business requirements. Then test the model to make sure it works. Then build the database.
Good luck.