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
}
Mientras tanto,...
Supongo que supongo que su Problema principal está plasmado en esta única línea:
Eso es poco práctico. La solución es tener un simple tabla para Topic
y Page
y diferenciarse a partir de ahí.