I'm having trouble trying to implement this database; I have three tables Courses, Schedules, and Students.
Students have
studentID, name, GPA, etc.
Schedules have
ID, course1, course2, course3
Courses have
courseID, courseName, courseAbbv, courseCredits, courseDepartment
Students.studentID and Schedules.ID have a one to one relationship
and
Courses.courseID has a one to many relationship with Schedules.course1,course2,course3
I want to make a query where I can display a students schedule so:
studentName, course1, course2, course3
where course1, course2, course3= courseAbbv