In my database, I have a lot of courses that are compulsory. Some are elective. However, there are courses of a third kind: A list from which you have to choose X courses. The list (and the number X) is different for each study program. How would you represent this relationally?
|
|
I find it interesting that the accepted answer says, "There is no way to represent the 'X of Y' relationally" when that is essentially what the question was asking for. It seems to me that 'X of Y' can indeed be modelled (and largely enforced) using SQL and here's a suggested way: Example scenario: students taking the course 'French' must choose two components (x) out of a total of three possible compnents (y).
Clearly, 'Databases' doesn't belong on a course on French so we need a tables for course designers to model courses [these tables have many relevant candidate keys so for clarity I'll define them at the 'bottom' of the
The above allows us to model the 'two out of three' attribute of the French course. Now we need a table to model what the three possible components of that course actually are:
Now for enrolment. Billy want to do the French course...
...and chooses 'Oral' and 'Vocab':
The above structure works a good way of enforcing the maximum values i.e. no more than three components for the French course and no more than two choices for each student. What it doesn't do, however, is to ensure exact amounts e.g. that Billy doesn't choose just one component. Standard SQL has solutions to this problem e.g. Does this lack of support for the full solution mean we don't do anything and just trust the application will refrain from writing invalid data? of course not! A good interim approach is to revoke the privileges from the base tables and provide helper stored procedures e.g. one to enrol a student which takes their chosen course components as parameters: the count is done at after the |
|||||||||
|
|
You need 3 tables here: StudyPrograms, Courses and Components. Components represents the Courses which comprise each StudyProgram and is a junction table between Courses and StudyPrograms. Each Component record can contain a field indicating if the Course is a compulsory part of the StudyProgram. You can also include a field to indicate whether the Course is one of a list that can be chosen. There is no way to represent the 'X of Y' relationally, you will need some logic in your stored procedures to ensure this business rule is followed (or possibly in your data access code layer, depending on how you want to organise the application). |
|||||
|
|
You have two options: you can model the data closer to reality, where some are single-course requirements, and others are X from Y courses requirements, or you could model all requirements as X from Y, where the single-course requirements are "1 from 1" requirements. I would recommend something like this:
For instance, say you have a program called "Basket Weaving" that requires:
and two of the following four courses:
Your data would look like:
|
|||
|
|
|
In principle one would expect to be able to create a constraint something like this to enforce the rule:
Unfortunately, SQL makes it all but impossible to implement this, or at least makes it very difficult to update the database while the constraint is enforced. So if you really want to represent such a rule in the database then you may need a better model than SQL can offer. In practice such rules will often be enforced in application code instead. |
|||||||||||
|
|
|||
|
|
|
I would do the following: First create your Course table:
Then have a second table for the optional course(s):
in essence the second table is the link table that holds all the optional choices. Example:
in the optionalCourses table:
Hopefully that makes sense |
|||
|
|
|
I would define one table For example, you could then have a Math component, in which you have courses like Algebra, Trigonometry, Calculus I and II etc - this is indicated with records in the To find out if a certain set of courses fulfill the diploma requirements of a programme, just sum the courses' credit values over each component, and see if it matches the required values in the Example:Below is some example table data that defines two programmes, physics and chemistry, and their relations to three math courses and a mechanics course. The requirements of the students will be as follows:
As you see, this schema is really flexible as far as determining "baskets" of courses that you can "pick and choose" a minimum amount of (0 < requried credits in the component < total credits in component), entirely optional courses (required credits = 0) as well as mandatory courses (required credits = total credits in component). Schema:
|
||||
|
|
|
You could consider these courses as a "set", and then have a separate Example:
COURSES_SET
CourseSetID Name
----------- ---------------
1 Early Renaissance medical techniques
2 Jurassic theological certificate program
3 Mad Science
COURSES
CourseID Name CourseSetID CourseSequenceNumber
-------- -------------------- ----------- ---------------------
1001 The joys of leeches 1 1
2011 How to keep your
patient from dying 1 2
1700 Is there a T-Rex?
Arguements for and
Against 2 1
1301 Intro to Algorithms (NULL) (NULL)
3301 Cackling: An advanced 3 3
course
This model allows you to associate a course with a set (though you could also call it a "program") of courses, and also assign a sequence number to ensure that students take them in the correct order. If two courses could be taken at the same time (sequence not important between the two), you could assign them the same sequence number. Then you could have a separate |
||||
|
|