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
}
Pendant ce temps, ...
Je suppose que votre problème principal est incarné dans cette seule ligne :
Ce n'est pas pratique. La solution est d'avoir un simple tableau pour Topic
et Page
et différencier à partir de là.