follow this structure. Creating records following the structure of the table is populating the table.

Slides:



Advertisements
Similar presentations
1 Microsoft Access. 2 Specifying Query Criteria 3 Exact Matches and Literal values.
Advertisements

Relational and Equality Operators Table 4-1. Sample Conditions Table 4-2.
P449. p450 Figure 15-1 p451 Figure 15-2 p453 Figure 15-2a p453.
Questions Jesus Asked Questions Jesus Asked Part 1.
1 Microsoft Access 2002 Tutorial 5 – Enhancing a Table’s Design, and Creating Advanced Queries and Custom Forms.
WEEK 11 Database Design. Agenda Hybrid Review Create Tables Add, Edit Data Create Relationships in MS Access 2010 Queries.
SQL and Conditions Speaker notes will provide additional information!
Introduction to Access 2010 CIS120first.accdb is the database I am creating.
Writing a Report Questions to ask. Why am I here? Who is the reader and what do they need to know? Imagine an outside examiner with no knowledge of your.
A am going to create a table in design view. I am going to create a table in an Access database that contains information about the books that I have on.
Finish ing the logic flowc harts from week 3.. if invcd = “A” and (amtfst > 500 or amtsnd > 200) move “OKAY” to msg end if With the parenthesis, invcd.
Creating a database - I clicked on blank database and am saving it as books10.mdb. For more information see the practice example under week #1. I am going.
The data in the table.. Starting a query. Two criteria in an AND relationship.
Microsoft Access 2016 Obtain Valuable Information Using Queries
Testing for Conductivity
The road to answering open-ended reading questions
This shows the user interface and the SQL Select for a situation with two criteria in an AND relationship.
Larry Reaves October 9, 2013 Day 16: Access Chapter 2 Larry Reaves October 9, 2013.
On new..
Scientific Method The scientific method is a guide to problem solving. It involves asking questions, making observations, and trying to figure out things.
Chapter 4: Control Structures
Chapter 4: Decision Structures and Boolean Logic
1. Which stat plot has a higher standard deviation?
1. Vicky has been on holiday and has taken lots of photos
Access Database for CIS17
MySQL - Creating donorof database offline
Please see speaker notes for additional information!
Please use speaker notes for additional information!
Access and Condition Statements
Roll of thunder, hear my cry
Wednesday, 2 March 2016.
Using Access 2016 Since we are creating a new Access database, we need to select blank database.
Week 3. criteria must be true..
Using SQL with Access I am adding queries to the stu table in SecondDB.accdb – a database that I created in class. SQL stands for structured query language.
Access
Miscrosoft Office..
I am opeing Access 2003 in the Microsoft Office.
Why our relationship with God really matters
Chapter 4: Decision Structures and Boolean Logic
Level 4 questions Level 4 questions What is s/he going to say?
You can read it better when I make the change.
These are user interface queries
On new..
In this case I should have had a " after OKAY as well In this case I should have had a " after OKAY as well. I can also move OKAY by assigning.
How do we know what we know about the past?
Searching an Array or Table
Access Tutorial 5 Creating Advanced Queries and Enhancing Table Design
Please use speaker notes for additional information!
If statements (Inven1, Inven2, Inven2a, Inven3, Inven3a)
Done with SQL..
Paragraph Structure. Connectives. Comprehension Text structure.
This is the example I want the class to put up to become comfortable with creating and populating a table in Access.
Lesson 3 Chapter 10.
Notes on SQL This slide show will introduce SQL using Access. It assumes only an introductory level of knowledge about Access.
Introduction to Access 2010
Figure 11-1.
Unit 1 Foundations Schooled by Gordon Korman
Creating a Query to View, Change and Analyse Data
Figure Overview.
Ways to Analyze Evidence
Figure Overview.
Play Writing & Directing
Chapter 4: Decision Structures and Boolean Logic
Using SQL with Access I create a database named
I am now going to do queries in SQL
either of two other things (an OR relationship between them)
Template for the portfolio.
Access Click on file and then you want a new database.
Short Constructed Response
Information system analysis and design
Presentation transcript:

follow this structure.

Creating records following the structure of the table is populating the table.

Text or character literals are enclosed in quotes.

This shows the logic flowchart for the decison which is asking whether the major contains CI.

relationship.

which says these are in an OR relationship.

I am now looking at the data to figure out which criteria caused the record to be displayed. Note that major="BU" does not meet the first criteria and those records also have numcrs not > 10 so they do not meet the second criteria. Therefore they do not display.

If I change the num of courses for Linda Ames to 12 then the record meets the > 10 criteria and is displayed even though it did not meet the major = "CI" criteria.

and the OR line of the query.

> 15 so the second chance of gpa > 3 is why she got displayed.

The second or OR criteria is gpa > 3 The second or OR criteria is gpa > 3. That criteria has nothing else on the line so it stands alone. Therefore all students with gpa > 3 will be displayed without checking anything else. It stands alone!

Analyzing the data we see that gpa >3 was responsible for our seeing the two records with BU and also Mary Smith.