Calculated Fields Exercises Queries

Slides:



Advertisements
Similar presentations
Relational Database Systems Higher Information Systems Advanced Implementation in Microsoft Access.
Advertisements

FUNCTIONAL ICT LEVEL 2 Advanced Excell. Data types.
Microsoft Access 3 Database Creation and Management.
Thinking Mathematically Consumer Mathematics and Financial Management 8.2 Simple Interest.
Relationship and Query Assignment. Creating Relationship Assignment: Create a blank database (use any names you like) And then, import the three Excel.
Databases Tutorial 2 Further Select Statements. Objectives for Week Data types Sort retrieved data Formatting output.
Data Types and Field Properties 5.01 Understand database tables used in business.
Interpreting SQL Code. SQL (The language used to query a database) S is used to specify the you want to include. F is used to specify the the selected.
Data Types and Field Properties 5.01 Understand database tables used in business.
CIS*1000*DE – Databases Microsoft Access (Part 2).
Microsoft Access 3 Database Creation and Management.
ACCESS CHAPTER 5 FORMS AND REPORTS Learning Objectives: Build a simple form Add a label, text box, and list controls to a form Create a multi-table form.
Querying a Database - A question or an inquiry (dictionary.com) - WHAT ARE WE ASKING QUESTIONS ABOUT? THE DATA - BY ASKING QUESTIONS OF THE DATA WE OBTAIN?
Microsoft Access 2007 Tutorial (Part II) CIS*1000*DE.
Adding a Purchase Requisition. Adding PO Requisitions  Go to:  Click For Staff> Employee Resources> Employee Access.
® Microsoft Access 2010 Tutorial 3 Maintaining and Querying a Database.
COMPREHENSIVE Access Tutorial 3 Maintaining and Querying a Database.
Pasewark & Pasewark 1 Access Lesson 3 Creating Queries Microsoft Office 2007: Introductory.
1 Access Lesson 3 Creating Queries. 2 Creating a Query with the Simple Query Wizard Query-- database object that lets you ask the database about the data.
Starter A delegate comes to you (the receptions) and tell you they have lost their timetable (itinerary) What details would you ask them for to check the.
McGraw-Hill/Irwin The Interactive Computing Series © 2002 The McGraw-Hill Companies, Inc. All rights reserved. Microsoft Office 2002 Lesson 4 Creating.
CPSC 203 Introduction to Computers Lab 60 By Jie Gao.
Access Chapter 5-Table Tricks, Advanced Queries and Custom Forms.
Access Chapter 7- Access Custom Reports. PgP MIS 342 Access7-2 Custom Reports  Banded report writer Report, Page(s) and Group(s) sections can have both.
Access Chapter 3-Obtaining Answers to Your Data Questions.
DAY 16: MICROSOFT ACCESS – CHAPTER 2 Madhuri Siddula October 8, 2015.
Databases Letts Chapter 11. A database program can be used to:  sort a file into a different order;  search through the records for a matching string.
Access Chapter 4-Form and Report Basics. PgP MIS 342 Access4-2 Forms  Used to maintain (add/delete/edit) the data in underlying tables  Wizards-show.
Microsoft Access Creating Queries Expression Exercise- Criteria and Calculated Fields.
Purchase Orders, Invoices, and Shipping Chapter 16 Sec 3.
Data Mining Using The YESCO Workbench. Resource Menu – Commonly Used Area’s »AP Invoices »Billings »Customer Sites »Customers »General Ledger »Job Releases.
Chapter 11: Car Task Extension: Queries Importing CSV: Make sure currency is in Euros with two decimal places Using a suitable database package, import.
SQL SELECT Getting Data from the Database. Basic Format SELECT, FROM WHERE (=, >, LIKE, IN) ORDER BY ; SELECT LastName, FirstName, Phone, City FROM Customer.
Classwork: Common Errors Primary keys: don’t forget them! Primary keys: choose the best one! – “Name” and “birthday” are not the best choices. – “Phone.
Structured Query Language SQL Unit 4 Solving Problems with SQL.
ORDER BY clause in SELECT command: Normally, the result of the query will not be in ordered format. If we want to get the result of the query in specific.
Percentages Your task is to produce a mindmap for the following aspects of percentages;  Express one quantity as a percentage of another  Find a percentage.
Computer Science & Engineering 2111 Sorting in Queries 1CSE 2111 Lecture-Advanced Queries.
Rules of Precedence The rules of precedence determine the order in which expressions are evaluated and calculated. The next table lists the default order.
Access Query Design. IT Fundamentals2 Access Query Design The Query design screen provides a mechanism for selecting specific data from datafile(s) by:
Computer Science & Engineering 2111 Inner Joins and Advanced Queries 1CSE 2111 Lecture-Advanced Queries.
Problem solving Chapter 3
ANNOUNCEMENTS. EVENTS CALENDAR TITLE OF EVENT Details about the event. Date: Month, Day Time: 00:00-00:00 Location: Campus Building.
N5 Databases Notes Information Systems Design & Development: Structures and links.
Writing Basic SQL SELECT Statements
Larry Reaves October 9, 2013 Day 16: Access Chapter 2 Larry Reaves October 9, 2013.
Basic Criteria in Queries
Q or R Contains a new field called Total Sales which is calculated at run-time. In this field you will multiply the Price by the Sold field Has the Total.
Data Types and Field Properties
Assignment 2 Due Thursday Feb 9, 2006
Chapter 4 Summary Query.
Assignment 2 Due Thursday Feb 9, 2006
Data Types and Field Properties
Action Query Exercises
Access Chapter 6- Custom Forms.
Data Types and Field Properties
Query Functions.
RAHUL KAVI October 22, 2013 Day 20: Access Chapter 4 RAHUL KAVI October 22, 2013.
Data Types and Field Properties
Data Types and Field Properties
Office Rent Receipt Bill To: Receipt No: Date: Customer Name
Office Rent Receipt Bill To: Receipt No: Date: Other Details:
Chapter 3: Selection Structures: Making Decisions
Creating Queries Expression Exercise- Criteria and Calculated Fields
‘ORDER BY’ Order by clause allows sorting of query results by one or more columns. Sorting can be done in ascending or descending. Default order is ascending.
List of Values and Parameter Queries
Chapter 9 - Action Queries
Chapter 5-Lookup Table Exercise
Data Types and Field Properties
Data Types and Field Properties
Presentation transcript:

Calculated Fields Exercises Queries Chapter 3 Calculated Fields Exercises Queries

Using Northwind.mdb Orders Table

1. Create Expression Locate all Ship Names that contain a “q” anywhere in the ‘Ship Name’ field PgP MIS 342 Exercises

2. Create Expression Locate all Ship Postal Codes beginning with 050 PgP MIS 342 Exercises

3. Create Expression Locate all Freight charges over $100.00, sort results in Descending Order PgP MIS 342 Exercises

4. Create Expression Locate all Order IDs for orders Shipped between 9/1/96 and 9/30/96 Sort Ascending by Shipped Date PgP MIS 342 Exercises

5. Create Expression Number of days before today an order shipped Sort Descending PgP MIS 342 Exercises

Using Northwind.mdb Order Details table

6. Create Expression Locate all orders where Quantity is an odd number Hint: search help the word “modulus” PgP MIS 342 Exercises

7. Create Calculated Field Total discounted amount is greater than $1000.00 PgP MIS 342 Exercises

Using Northwind.mdb Employees table

8. Create Calculated Field Calculate employee seniority in any suitable time increment (days, months…) PgP MIS 342 Exercises