Reputation: 89
i want to create a tabel for study plan for each major where students can see the study plan and mark the courses that he finished . How is the structure will be ? i thought of this but its simple and not covering all the details .I need more table illustrating but how ?
CREATE TABLE Studyplan(
StudyplanID INTEGER(25) PRIMARY KEY,
unicourses VARCHAR(25) ,
majorcourses VARCHAR(25),
electivecourses VARCHAR(25),
Year INTEGER(200)
);
Upvotes: 0
Views: 894
Reputation: 5636
As this might be homework, I won't create the tables, but here are some pointers.
Well, I had a couple more listed, but this should be enough to keep you going for awhile. You can post other questions as you progress.
Upvotes: 1