CourseTopics
{
int TopicId; // Foreign-Key to Topics.Id
int CourseContentsId; -- first of 3-part FK
int Page; -- added
int SNo; -- added
PRIMARY KEY(TopicId, CourseContentsId, Page, SNo), -- for JOINing one way
INDEX (CourseContentsId, Page, SNo, TopicId) -- for JOINing the otehr way
}
Ondertussen, ...
Ik denk dat uw hoofdprobleem in deze ene regel wordt belichaamd:
Dat is onpraktisch. De oplossing is om een enkele . te hebben tabel voor Topic
en Page
en onderscheiden van daar.