I have three tables in SQL Server and the relationships between them is many to many, but I don't know which one is right to make the relationships.
Is it put table for make the relationship between the book and Teacher (teacher can take more than one subject)
or
put all student and teacher and book in one relationship table for many to many
tblBook
(PK) BookId
BookName
tblTeacher
(pk)TeacherId
TeacherName
tblStudent
(pk)StudentId
StudentName