Top Banner
Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access
42

Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Mar 28, 2015

Download

Documents

Bryan Parrish
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Relational Database Systems

Higher Information Systems

Advanced Implementation in Microsoft Access

Page 2: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Developing a solution

Tables Queries User Views Navigation

Page 3: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Referential Integrity For the database to work properly, it is

essential to guarantee that a foreign key always refers to a record which exists in the other table.

This is called referential integrity. For example, an entry in the Loan table

can only refer to an existing record in the Member table, because a loan can only be made by a member.

Page 4: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Referential Integrity

Referential integrity is established by defining relationships between the tables

Page 5: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Referential Integrity

Page 6: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Referential Integrity

Page 7: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Referential Integrity

Lookups are used to ensure referential integrity

Page 8: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Referential Integrity

In the Loan table, the user can only enter a value for Member Number which already exists in the Member table

Page 9: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Validation: Presence Check

Page 10: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Validation: Range Check

Page 11: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Validation: Restricted Choice Check

Page 12: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Validation: Default Value

Page 13: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Validation: Default Value

Page 14: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Formatting: Dates/Times

Page 15: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Formatting: Numeric

Page 16: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Queries Searching Sorting Calculations

Page 17: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Searching Searching is the process of selecting

records from a table or combination of tables

To perform the query, three items must be identified Which fields will be used to identify the

records required? What are the criteria for identifying the

records required? Which fields will be displayed?

Page 18: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Search 1: Single Condition Identify the names and telephone

numbers of club members who have rented Shrek

Page 19: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Search 2: Multiple Conditions (AND)

List those members who have rented “Shrek” since 16 August 2004

Page 20: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Search 3: Multiple Conditions (OR)

List those members who have rented “Shrek” or “Finding Nemo”.

Page 21: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Search 3: Multiple Conditions (OR)

Use Group By to eliminate duplicates

Page 22: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Search 4: Combining conditions

List the members who have rented either Shrek or Finding Nemo since the 16 August 2004

The search criteria are:Film Title = “Shrek” AND Date Hired > 16/08/2004 OR Film Title = “Finding Nemo” AND Date Hired > 16/08/2004

Note that the Date Hired condition must be repeated for each film

Page 23: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Search 4: Combining conditions List the members who have rented either

Shrek or Finding Nemo since the 16 August 2004

Page 24: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Sorting

To perform a sort, two items must be identified: Which field (or fields) will be used to

decide the order of records? For each field selected, will the order

of sorting be ascending or descending?

Page 25: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Sorting To produce a list of people with the

tallest first, the records would be sorted in descending order of height.

To produce a list of people with youngest first, the records would be sorted in ascending order of age.

A very common way of ordering records relating to people is in alphabetical order. To achieve alphabetical ordering requires the records to be sorted in ascending order of surname.

Page 26: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Complex Sorting A complex sort involves more than one

sort condition involving two or more fields.

To achieve “telephone book order”, the name is sorted in ascending order of surname, then ascending order of forename. In this case, the Surname field is the primary sort key, and the Forename field is the secondary sort key.

Page 27: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Complex Sorting

Page 28: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Calculations

Horizontal calculations are often known as calculated fields, and vertical calculations are known as summary fields.

Page 29: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Functions

Page 30: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Working with Dates

to search for all DVDs rented in the last week, you would use the expression Date() – [Date Hired] <= 7

to calculate a person’s age in years from their date of birth, you would use the expression DateDiff("yyyy",[Date of Birth],Date())

Page 31: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Parameterised Queries

Page 32: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

User Views

User views are created using forms and reports.

A form or report is usually based on a query which selects the required fields from the appropriate tables, sorting the results if necessary, and performing any horizontal calculations.

Page 33: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Report Structure

Page 34: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Summary Information Sum to add values to give a total, e.g.

Total Cost of DVD Rentals last month Average to find an average value, e.g.

Average Cost of Hire per DVD Count to count the number of records

found, e.g. Number of DVDs rented per member

Maximum to find the highest value, e.g. Highest number of rentals per DVD

(to find the most popular DVD) Minimum to find the lowest value, e.g.

Lowest number of rentals per member

Page 35: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Summary Information Summary information

is produced by creating a summary field.

A summary field is a calculated field with a formula to perform the calculation, and is placed in a summary section of a report.

Page 36: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Sub-forms and sub-reports

Page 37: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Sub-forms and sub-reports

Page 38: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Sub-forms and sub-reports

Page 39: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Navigation

Page 40: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Scripting

Page 41: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Scripting

Page 42: Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.

Macros