A relational database contains multiple tables that are linked together through key fields. For example, a library database could have tables for customers, books, and book lendings that are connected using unique IDs. This avoids data duplication and allows easy access to and reporting on customer and book information.
Key database terms include: attributes, which are the field names and data types in tables; primary keys, which uniquely identify rows; composite keys, which identify rows using multiple fields; foreign keys, which link tables and are primary keys in other tables; and referential integrity, which ensures consistent updates across related tables.