Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Making new table when data changes from original

Status
Not open for further replies.

bjohran

IS-IT--Management
Oct 24, 2001
3
0
0
US
here is what I am trying to do. I have my original table that contains the total rosters for the campus
(instr_name, crse, desc, stu_id, stu_name)
I have 450 different courses, my attempt is to create a table for every course, so that each course will be in a separate table with all the students taking this course.
 
We are trying to get each instructors course in a separate file along with the students in the particular class.
 
You don't want to do this. I see the following:

tblInstructors
InstructorID
FName
LName
...

tblCourses
CourseID
Description
...

tblStudents
StudentID
FName
LName
...

tblCoursesOffered
CourseID
InstructorID
StartDate
EndDate
StartTime
EndTime
...

tblScheduled
CourseID
StudentID
...

Creating multiple tables like this and using Primary and Foreign Keys will allow you to reduce redundant data and allow you to create queries and reports that will work for all instructors, courses, etc...

Suggest a class be scheduled in database design... Terry M. Hoey
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top