Hello, I am new to database design.
I have the following problem: I need to keep track of which university courses go with which textbooks(ISBN). However, one course can require multiple textbooks; similarly, one textbook can be used in multiple courses.
The solution I've designed is:
course(PK)
ISBNlist
Where ISBNlist is a string of comma delimited ISBN numbers.
Is there a better solution to this problem?
Thank you.