Analysis & Design
Keys
Relationships
SQL QUERIES
Calculations
100

 These are the people who will use the database. 

What are end users?

100

A field that uniquely identifies each record.

What is a Primary Key?

100

The most common type of database relationship.

What is One-to-Many (1:M)?

100

The SQL clause used to specify which fields are displayed.

What is SELECT?

100

A value created during a query rather than stored in the database.

What is a Computed/Calculated Value?

200

These describe the processes, activities and information a system needs.

What are functional requirements?

200

A primary key from another table used to create a link.

What is a Foreign Key?

200

The relationship between a School and a Headteacher.

What is One-to-One (1:1)?

200

The SQL clause used to filter records.

What is WHERE?

200

The SQL keyword used to give a temporary name (Alias) to a calculated field.

What is AS?

300

Staff need to be able to update pupil records when a new member joins a club is this type of reequirement.

What is an end-user requirement?

300

A key made from two or more fields.

What is a Compound Key?

300

The notation used in ER diagrams to represent "many".

What is Crow's Foot notation?

300

The wildcard used in Access SQL to represent zero, one or many characters.

What is the asterisk (*) wildcard?

300

The aggregate function that returns the number of records.

What is COUNT?

400

A gym database must store member details, calculate monthly fees and produce membership reports is these types of requirements.

What are functional requirements?

400

In a Pupil table, this field would most likely be used as the primary key.

What is PupilID?

400

 The type of relationship between Student and Subject.

What is Many-to-Many (M:M)?

400

If six tables are used in a query, this is the number of joins required. 

What has five joins?

400

The SQL clause required when mixing aggregate and non-aggregate fields.

What is GROUP BY?

500

A customer wants to view all bookings made for their holiday resort is this type of requirement.

What is an end-user requirement?

500

ResortID stored in the Hotel table is this type of key.

What is a Foreign Key?

500

This type of relationship can result in data duplication and is not desirable in database design.

What is Many-to-Many?

500

What SQL query would you use to change all staff members salaries by 5%?

What is an UPDATE query(with calculation)?

500

The first query when implementing secondary queries should produce this.

What is a single (computed) value?