SQL Schema Diagram Reference¶
Use this entity-relationship diagram when designing tables for the module's sample employee database. It reinforces naming conventions and data types covered in the SQL Foundations lesson.
erDiagram
employees {
INTEGER id PK
TEXT name
TEXT role
INTEGER salary
}