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
}
Enquanto isso, ...
Eu acho que seu principal problema está incorporado nesta linha:
Isso é impraticável. A solução é ter um único tabela para
Topic
e Page
e diferenciar a partir daí.