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
}
Intanto...
Immagino che il tuo problema principale è racchiuso in questa riga:
Non è pratico. La soluzione è avere un single tabella per Topic
e Page
e differenziare da lì.