What is a Relational Database
A database where data is held in tables (relations) and the tables are linked by common attributes
What is a Flat File
A database that consists of a single file. The flat file will most likely be based around a single entity and its attributes
What are the potential problems of using a flat file database
What is an Entity
An item of interest
What are the three types of keys
What is a Primary Key
A primary key is a unique identifier for each record in the table
What a Secondary Key
What is a Foreign Key
What is the name given to a key that is made up of multiple attributes
Composite key
What are the three Entity Relationship Models

What is Normalisation
The process of coming up with the best possible layout for a relational database
What does Normalisation try to achieve
What is First Normal Form
What is Second Normal Form
What is Third Nomalisation form
What is Indexing
What does capturing data mean and give examples
What does selecting and managing data mean and give an example
What does exchanging data mean and give an example
What are the eight types of SQL operations
What is the general form for a SQL SELECT operation
SELECT
FROM
WHERE
What is the general form for a SQL UPDATE operation
UPDATE
SET
WHERE
What is the general form of an SQL INSERT operation
What is the general form for a SQL DELETE operation
DELETE
FROM
WHERE