Microsoft Office Access 2010 Lab 3

Slides:



Advertisements
Similar presentations
Working with Tables 1 of 5. Working with Tables 2 of 5.
Advertisements

Access 2007 ® Use Databases How can Microsoft Access 2007 help you structure your database?
Exploring Microsoft Access
Microsoft Office 2007 Access Chapter 2 Querying a Database.
XP Chapter 3 Succeeding in Business with Microsoft Office Access 2003: A Problem-Solving Approach 1 Analyzing Data For Effective Decision Making.
Developing Effective Reports
Querying a Database Microsoft Office Access 2003.
1 Chapter 2 Reviewing Tables and Queries. 2 Chapter Objectives Identify the steps required to develop an Access application Specify the characteristics.
1 Access Lesson 3 Creating Queries Microsoft Office 2010 Introductory Pasewark & Pasewark.
1 Access Lesson 3 Creating Queries Microsoft Office 2010 Introductory.
Copyright © 2010 Pearson Education, Inc. Publishing as Prentice Hall 1 1. Chapter 2: Relational Databases and Multi-Table Queries Exploring Microsoft Office.
1 Chapter 7 Query-By-Example by Monica Chan CS157B Professor Lee.
McGraw-Hill Technology Education © 2004 by the McGraw-Hill Companies, Inc. All rights reserved. Office Access 2003 Lab 3 Analyzing Data and Creating Reports.
Microsoft Access 2010 Building and Using Queries.
Analyzing Data For Effective Decision Making Chapter 3.
Lesson 2.  To help ensure accurate data, rules that check entries against specified values can be applied to a field. A validation rule is applied to.
Management Information Systems MS Access MS Access is an application software that facilitates us to create Database Management Systems (DBMS)
Microsoft Office 2007 Access Chapter 2 Querying a Database.
® Microsoft Office 2010 Access Tutorial 3 Maintaining and Querying a Database.
McGraw-Hill/Irwin The O’Leary Series © 2002 The McGraw-Hill Companies, Inc. All rights reserved. Microsoft Access 2002 Lab 2 Modifying a Table and Creating.
MS Access 2007 Management Information Systems 1. Overview 2  What is MS Access?  Access Terminology  Access Window  Database Window  Create New Database.
Database Systems Microsoft Access Practical #3 Queries Nos 215.
Microsoft Office 2007 Access Chapter 3 Maintaining a Database.
Part II. Query Types On the design query table pane, right click and the cascading window will appear.
Access 2007 ® Use Databases How can Microsoft Access 2007 help you structure your database?
1 Database Systems Introduction to Microsoft Access Part 2.
Course ILT Forms and queries Unit objectives Create forms by using AutoForm and the Form Wizard, and add or modify form headers and footers Open and enter.
Pasewark & Pasewark 1 Access Lesson 3 Creating Queries Microsoft Office 2007: Introductory.
McGraw-Hill/Irwin The O’Leary Series © 2002 The McGraw-Hill Companies, Inc. All rights reserved. Microsoft Access 2002 Lab 3 Analyzing Tables and Creating.
Microsoft Office 2013: In Practice Chapter 3 Creating and Using Queries Copyright © 2014 by The McGraw-Hill Companies, Inc. All rights reserved.McGraw-Hill/Irwin.
1 Lesson 18 Managing and Reporting Database Information Computer Literacy BASICS: A Comprehensive Guide to IC 3, 3 rd Edition Morrison / Wells.
Databases Competency Explain advanced database concepts and functions.
Excel part 5 Working with Excel Tables, PivotTables, and PivotCharts.
Microsoft Access Lesson 5 Lexington Technology Center February 25, 2003 Bob Herring On the Web at
XP Chapter 1 Succeeding in Business with Microsoft Office Access 2003: A Problem-Solving Approach 1 Level 2 Objectives: Understanding and Creating Table.
CHAPTER 7 LESSON B Creating Database Reports. Lesson B Objectives  Describe the components of a report  Modify report components  Modify the format.
1 New Perspectives on Microsoft Access 2016 Module 4: Creating Forms and Reports.
Microsoft Office Access 2010 Lab 1
Prepared By: Bobby Wan Microsoft Access Prepared By: Bobby Wan
GO! with Microsoft Office 2016
Microsoft Access 2013 Bobby Wan.
Microsoft Office Access 2010 Lab 2
Lesson 23 Managing and Reporting Database Information
Microsoft Office Illustrated Introductory, Windows Vista Edition
Access Chapter 2 Querying a Database.
Objectives Query for top values Create a parameter query
and Defining Table Relationships
Access Tutorial 4 Creating Forms and Reports
GO! with Microsoft Office 2016
GO! with Microsoft Access 2016
Microsoft Office Illustrated Fundamentals
Microsoft Access 2003 Illustrated Complete
Microsoft Access 2003 Illustrated Complete
Building and Using Queries
Tutorial 4 Creating Forms and Reports
Exploring Microsoft Office Access 2010
Microsoft Office Access 2003
GO! with Microsoft® Access e
Analyzing Data and Creating Reports
Creating and Modifying Queries
Microsoft Office Access 2003
Microsoft Office Access 2003
Introduction to Database Programs
Access Tutorial 5 Creating Advanced Queries and Enhancing Table Design
From and Report.
Introduction to Database Programs
Microsoft Office Illustrated Introductory, Windows XP Edition
Microsoft Office Illustrated Fundamentals
Shelly Cashman: Microsoft Access 2016
New Perspectives on Microsoft
Presentation transcript:

Microsoft Office Access 2010 Lab 3 2016 Querying Tables and Creating Reports

Objectives Evaluate table design Modify relationships Enforce referential integrity Create and modify a simple query Query two tables

Objectives Filter a query Find unmatched and duplicate records Create a parameter query Create reports from tables and queries Display a Totals row

Objectives Modify a report design Select, move, and size controls 3-4 Objectives Modify a report design Select, move, and size controls Change page margins Preview and print a report Compact and back up a database

3-5 Refining the Database Once created, analyze your database for efficiency. There may be a better way to organize your table information Is information repeated? Are there any fields that need to be added? Use the Access Table Analyzer to evaluate the design of your database It is a good rule to thumb to analyze a database for efficiency Use the Table Analyzer to determine if a table should be divided into smaller tables for efficiency Note: To find out more about analyzing tables, students can look up database normalization on the web

Evaluating Table Design 3-6 Evaluating Table Design Data should be in the smallest unit possible in a database For example, first name and last name should be two separate fields A field called NAME that includes both a first and last name is not as efficient

Concept Preview Query Join Query Criteria Report

Concept 1 Queries are based on tables Five types of queries Query A query is a request for specific data contained in a database Used to view data in different ways analyze date Change existing data Queries are based on tables Five types of queries A query is a request for specific data contained in a database. Queries are used to view data in different ways, analyze data and even to change existing data. Because queries are based on tables, you also can use query as the source for forms and reports.

Types of Queries Select - Retrieves the specific data you request from one or more tables, then displays the data in a query datasheet in the order you specify This is the most common type of query Crosstab - Summarizes large amounts of data in an easy-to-read, row-and-column format Parameter - Displays a dialog box prompting you for information, such as criteria for locating data. For example, a parameter query might request the beginning and ending dates, then display all records matching dates between the two specified values Action - Makes changes to many records in one operation. There are four types of action queries: A make-table query creates a new table from selected data in one or more tables An update query makes update changes to records, such as when you need to raise salaries of all sales staff by 7 percent An append query adds records from one or more tables to the end of other tables. A delete query deletes records from a table or tables SQL- Created using SQL (Structured Query Language), an advanced programming language used in Access

Concept 3 Five types of queries Query Criteria Expressions that are used to restrict the results of a query to display only records that meet certain limiting conditions Uses compound criteria AND operator OR operator Five types of queries A query is a request for specific data contained in a database. Queries are used to view data in different ways, analyze data and even to change existing data. Because queries are based on tables, you also can use query as the source for forms and reports.

3-11 Specifying Criteria A criteria expression will select only records that meet certain limiting criteria Criteria can be entered in the Criteria row of the query in Design View Not necessary to enter = (equal to) Character strings are automatically enclosed in quotation marks To instruct the query to locate records meeting multiple criteria, you use a compound criterion The AND or OR criterion is used to specify multiple conditions that must be met for the records to display in the datasheet The AND operator narrows the search, because a record must meet both conditions to be included. This condition is established by typing the word “and” in a field’s Criteria cell as part of its criteria expression The OR operator broadens the search, because any record meeting either condition is included in the output

Concept 2 Join An association between a field in one table or query and a field in another table or query Must have at least one common field Fields must be the same data type Used to bring information from different tables together Joins are what make relational databases so powerful Join is an association Based on relationships that have already been established A join line between the field lists identifies the fields of the relationship What is the difference between a relationship line and a join line ?

3-13 Basic Types of Joins

Concept 4 Professional-appearing output Can create … Report Professional-appearing output Generated from tables or queries Includes groups and summary information Can create … Formatted labels Report titles Headings Design styles, layouts, and graphics First decide what information you want to appear in the report Next determine the tables or queries that are needed A report is printed output generated from tables or queries: Can create a simple listing of all the fields in a table Can be a list of selected fields based on a query Can group data in reports to achieve specific results You can then display summary information, such as totals, by group to allow the reader to further analyze the data

Methods for Creating Reports 3-15 Methods for Creating Reports The method used depends on the type of report you need to create

Report Design Window Sections 3-16 Report Design Window Sections Elements of a report in design view

Stop Here