LLBL version = v2
I have 4 tables:
1. teacher table
2. student table
3. course table
4. teacher_student table which defines many-to-many relationship of teacher and student.
So, student can have many teacher and vice versa.
teacher has relation with 1 course only and courseID defines as foreign key in teacher table.
I want to show collection of students who follow specific course. can you help me solve this problem.
column inside all tables:
- course table: courseID, courseName
- teacher table: teacherID, teacherName, courseID
- teacher_student table: teacherID, studentID
- student table: studentID, studentName
thanks...