On new..

Slides:



Advertisements
Similar presentations
Databases Section 4: Select Queries Presented By: Lindani Ncube Based on Materials by: M Halse.
Advertisements

Creating Reports for a Database. Reports in Access are usually created when a repetitive task is performed regularly. For example when a business needs.
QUERYING A DATABASE By: Dr.Ennis-Cole. OBJECTIVES: Learn how to use the Query window in Design view Create, run and Save queries Define a relationship.
1. 2 icoffey ****** 3 decimal numbers Sales.
Database Systems Microsoft Access Practical #2 Making Forms and Reports Nos 215.
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.
Senior Elective Tutorial MS Access Database: Student Records.
Introduction to Access 2010 CIS120first.accdb is the database I am creating.
Using Microsoft Access Now that data has been entered we are ready to sort or data To do this, first click on the field label which you want to sort If.
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.
I want to do SQL, I start as if I am doing a regular query.
When I want to work with SQL, I start off as if I am doing a regular query.
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.
Planning & Creating a Database By Ms. Naira Microsoft Access.
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.
More about maintaining a table Use speaker notes for additional information!
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.
Access Query Design. IT Fundamentals2 Access Query Design The Query design screen provides a mechanism for selecting specific data from datafile(s) by:
Sample template for portfolio - I would prefer to see you do something more original!
This is the software we will use to load our html page up to the server. You can download a copy for home if you want to.
MICROSOFT ACCESS – CHAPTER 3 CONTD. Sravanthi Lakkimsetty Mar 09, 2016.
Presentation 4 Creating Databases Part III (Creating Reports)
Access Lesson 5 Creating and Modifying Reports
Access Maintaining and Querying a Database
records Database Vocabulary It can be useful to collect information.
Larry Reaves October 9, 2013 Day 16: Access Chapter 2 Larry Reaves October 9, 2013.
Find and Replace Used to quickly find and/or replace data quickly
Lesson 2 Notes Chapter 6.
Access Database for CIS17
TUTORIAL 2: Creating Query for Bill Processing Using
Please use speaker notes for additional information!
Microsoft Office Access 2003
Access queries p.meade.
Access and Condition Statements
Tutorial 3 – Querying a Database
CIS16 Application Programming with Visual Basic
follow this structure. Creating records following the structure of the table is populating the table.
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.
Microsoft Office Access 2003
Access
Miscrosoft Office..
I am opeing Access 2003 in the Microsoft Office.
Databases Computer Technology.
These are user interface queries
On new..
Access Database for CIT12
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.
Access: Queries II Participation Project
Databases Computer Technology.
Please use speaker notes for additional information!
This is the example I want the class to put up to become comfortable with creating and populating a table in Access.
Spreadsheets, Modelling & Databases
Creating a Database and a table
Notes on SQL This slide show will introduce SQL using Access. It assumes only an introductory level of knowledge about Access.
Access: Reports Participation Project
Introduction to Access 2010
Using Access to generate a report
Creating a Query to View, Change and Analyse Data
When we multiply by 10 we are making the number ten times bigger.
Creating a simple query in the Design View
Microsoft Office Illustrated Fundamentals
Using SQL with Access I create a database named
I am now going to do queries in SQL
Cycle 3: Unit 27 Lessons 104 – 111.
Template for the portfolio.
Access Click on file and then you want a new database.
Exploring Microsoft Access 2003
Presentation transcript:

on new.

and a drive etc.

the F drive. database name whatever. I did not use stu.

I had a problem and I ended up setting up the database with the name whatever. Then I decided to name the table stu. So I have the table stu in the database whatever.

table I named stu.

decimal numbers.

I will change this to a number and an integer.

Now I can add data.

Design.

query layout or I can double click on the fields.

A query lets you look at the data in a specified way A query lets you look at the data in a specified way. I specified that I only wanted to see these 4columns. view.

view. The results of the query.

quotes.

This shows only records where the major contains CI.

the query makes.

for a name for the query. I called it oneCI. Note also I could write ="CI" but if I do not put = it is assumed.

I am seeing records where major is CI AND credits > 12.

Now I am doing a new query where I am going to use an OR Now I am doing a new query where I am going to use an OR. These are the results, you will see the query in a minute.

The query is that I want the major to be CI OR the num_crs to be > 3. Either of these will result in the record being displayed. the or line.

The non CI major has num_crs > 3.

I am going to sort by stuname in ascending order.

> 10.

the or line.

to better test my results.

Everyone is a CI major and where the gpa is not > 3 Everyone is a CI major and where the gpa is not > 3.5 then the credits are > 10.

I have taken out the CI on the OR line so now I have major CI and gpa > 3.5 or just credits > 10.

this.

Homework.