Data model — conceptual representation of data structures.
Levels:
Components:
Example:
[Customer] 1----N [Order] 1----N [OrderItem] N----1 [Product]
Customer:
- customer_id (PK)
- name
- email
Order:
- order_id (PK)
- customer_id (FK)
- order_date
- total
Benefits: