Previously in this lesson we mentioned that SQL databases are relational.
A relational database stores data in tables that relate to each other.
Example:
- You have a users table and a posts table
- Each post connects to a user (who wrote it)
- This creates a relationship between the data
We’ll learn more about how these relationships work in a future lesson.