Description:

  • Relationship of many entity instances to many entity instances
    • Example: many students can study many courses
    • 
      erDiagram
      STUDENT }|--o{ COURSE : studies
      STUDENT {
      string studentID
      string studentName
      string cohort
      }
      COURSE {
      int courseID
      string courseName
      }