How would I represent this relationship between college courses and sections?
- I have a table for courses and a table for sections. The sections table contains only three rows, A, B, and C.
- Each course has three sections - A, B, and C
So a course has three sections and a section has many courses. Is this one to many or many to many? How I would I represent this in tables and connect the relationship?