Databases & Access 2000
Today’s Topic: Databases Define: Database Software Examine the different uses of database software Define the four components of database software: Tables Queries Forms Reports
Database Software Software designed to store, sort, sift through, manipulate, and display large amounts of data.
Database Software A Database table looks very similar to a spreadsheet, it has rows and columns, and data is entered into cells, but databases have a different purpose.
Database Software Database software is used for storing and manipulating large amounts of data of any kind Postal CodeCountryPhone EC1 4SDUK(171) USA(100) USA(313) Japan(03) Spain(98) Japan(06) Australia(03) M14 GSDUK(161) S Sweden Spreadsheet software is used to store and run calculations on numeric data $11,678.00Yearly Total $ Monthly Totals $ -Misc. $ Loans $ Wages Jan Jane Strickland's Income
Consider This…. What software would logically be used to store the following data: SpreadsheetDatabase Student Transcripts & GPA’s SpreadsheetDatabase FSU’s Schedule of Classes SpreadsheetDatabaseFinancial Aid Reports SpreadsheetDatabaseAmazon.com’s product catalogue
Solution Not Always Apparent Often times users will transfer data between a spreadsheet and database to accommodate different needs. The registrar might use a spreadsheet to calculate a student’s GPA Then transfer the results to the student’s database record.
Database Components MS Access Object Bar Tables: Store the data. For example, the Customers table will store customer-related data for all customers
Database Components Queries: Allow you to sift through the data stored in Tables to find useful information. For example, you might query your Customer Table to find your 10 best customers. MS Access Object Bar
Database Components Forms: allow users to easily and securely enter new records into a Table. MS Access Object Bar
Database Components Reports: provide tools to create attractive output from Tables and Queries. MS Access Object Bar
Database Components: Tables
File or Table A collection of data organized to meet user’s needs. Records (Entities) Fields (Attributes) Database Components: Tables
Database Tables are created and Fields defined using Design View. Database Tables are viewed and used using Datasheet View.
Database Components: Tables 1. Type field names in this column. 2. Set each field’s data type by selecting it from the list. 3. Set one or more fields to act as the primary key…… Creating a Table
Database Components: Tables The Primary Key field must contain unique data for each record. Data used to identify that record. Example: SSN’s are used as primary keys in IRS records Primary Keys
Consider This…. What data field could be used as primary key for the following database tables? A credit card company’s customer records. FSU student records A personal address book Account number Social Security Number or FSUCard Number Combined first name and last name TablePrimary Key
Relationships Databases typically consist of several related tables. Fields are selected to define how the tables are related.
Relationships In this example the CardNumber field is used to relate these tables so that the identity of the customer can be established.
Relationships This is called a one to many relationship since the primary key guarantees that their will be only one customer with any specified cardnumber.
Relationships …and each customer can make many –even and infinite amount of, purchases.
Database Components: Queries
Creating a Query using Design View Select the table(s) you wish to query
Database Components: Queries Creating a Query using Design View Select the fields that you wish to include in the query along with the table to which they belong
Database Components: Queries Creating a Query using Design View Specify the Criteria used to filter the data. In this query, only records with the Course Number CGS2060 will be displayed.
Database Components: Queries Creating a Query using Design View Define which field(s) will be used to sort the data
Database Components: Queries Creating a Query using Design View Check the fields that you would like to display in the query
Database Components: Queries Viewing the results of a query with Datasheet View Only records for CGS2060 are displayed.
Database Components: Forms
Forms provide an attractive and secure interface for entering data into a table.
Database Components: Reports
Create a report to present data from a table or query in an attractive and meaningful manner.
Summary Tables store the data. Queries sort and filter data in one or more tables Forms are used to input data into a table. Reports are used to output the data. Tables and Queries are best created using Design View Forms and Reports are easiest created using Wizards
Time to Practice