Right now there are two separate tables: Lessons and Concepts. They are not yet related because I haven't decided how to do that.
What I think I will do is add fields to the Lesson table:
concept1
concept2
concept3
concept4
concept5
But again, that limits me to only 5 concepts.
I thought of a combined table: LessonConcept in which I can have an infinite number of concepts
Table LessonConcept:
LessonConceptID
LessonID
LessonName
ConceptID
ConceptName
This table would then be linked to Lesson table via LessonID and to Concept Table via ConceptID.
I haven't done this yet but there is likely where I am headed.
Helix