Modeling: Map real-world entities and relationships into a database (a scaled-down version of the real world with pieces we care about)

Entity/Relationship Model: A diagram-based data model

Schema: Structure for entities & relationships

Untitled

Instance: Specific entries following a schema

Recursive Relationship: Link between an entity to itself. (e.g. employee - <colleague> - employee)

Ternary Relationship: Link between 3 entities

Cardinality & Multiplicity

Relationship Cardinality: (min, max) specifies how many target entities can be in a R~ (e.g. employee - (1, 5) - <assign> - (0, 50) - task: an employee can be assigned 1-5 tasks, a task can have 0-50 employees assigned)