Introduction to Relational Databases
Relational databases organize data into structured tables so applications can store, relate, and retrieve information consistently.
- Explain what a relational database is and why it is widely used.
- Describe tables, rows, columns, keys, and relationships.
- Recognize how relational structure supports consistency and reuse.
A relational database stores data in tables, where each table represents one type of thing such as students, courses, or orders.
Rows represent individual records, while columns describe the fields stored for each record.
Primary keys identify records uniquely, and foreign keys connect related tables together.
Relational structure helps applications keep data organized, searchable, and less repetitive.
A student portal keeps students, modules, and registrations in separate related tables so each registration points to the right student and course without copying the same details again.
- Why are tables a good way to organize application data?
- How do primary keys and foreign keys work together?
- Relational databases store data in tables.
- Keys connect related records safely.
- A good table design reduces repetition.