So I'm making a course table which stores course details, which will be displayed on my website. Now each course will have multiple videos/chapters. Eg: A course named stone age, might have 3 chapters pre historic, mediaeval, modern. I need to store link to these three videos under a single course which is "stone age". How do I do that?
- Stone Age
- pre historic
- mediaeval
- modern
- course 2 etc...
My course table has coursename, coursesubject, coursedescription, cprice, cid, cimg. Do I need to make another table to store the media content for this course? Or can it be done using a single table?