Template for the portfolio.

Slides:



Advertisements
Similar presentations
Importing and linking through Access Please use speaker notes for additional information!
Advertisements

Maintenance Modifying the data –Add records –Delete records –Update records Modifying the design –Add fields into tables –Remove fields from a table –Change.
Relational example using donor, contrib and drive tables Please use speaker notes for additional information!
Microsoft Access 2000 Creating Tables and Relationships.
DATABASE. Computer-based filing systems Information in computer-based filing systems are stored in DATA FILES. A FILE is a collection of RELATED RECORDS.
® Microsoft Office 2010 Access Tutorial 2 Building a Database and Defining Table Relationships.
Lesson 17 Getting Started with Access Essentials
SQL and Conditions Speaker notes will provide additional information!
What have we learned?. What is a database? An organized collection of related data.
IE 423 – Design of Decision Support Systems Database development – Building Tables
1 Database Systems Introduction to Microsoft Access Part 2.
Senior Elective Tutorial MS Access Database: Student Records.
Introduction to Access 2010 CIS120first.accdb is the database I am creating.
Concepts of Database Management Eighth Edition Chapter 3 The Relational Model 2: SQL.
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.
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.
Lesson 13 Databases Unit 2—Using the Computer. Computer Concepts BASICS - 22 Objectives Define the purpose and function of database software. Identify.
Visual Basic I/O Programs (ProjRead1, ProjRead2, ProjWrite1, ProjPay) Please use speaker notes for additional information!
Classwork: Common Errors Primary keys: don’t forget them! Primary keys: choose the best one! – “Name” and “birthday” are not the best choices. – “Phone.
Ennis-Cole, AC 2.01, CECS Maintaining A Database By: Dr. Ennis-Cole.
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.
SQL server Section 2&3. What are Data Types Character Data Types Number Data Types Date and Time Data Types CAST and CONVERT functions TRY_PARSE and TRY_CONVERT.
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.
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.
Data Please use speaker notes for additional information!
Access Tutorial 2 Building a Database and Defining Table Relationships
Creating a database table
COP 4540 Database Management
End of Access Exam Review.
This shows the user interface and the SQL Select for a situation with two criteria in an AND relationship.
Unit 16 – Database Systems
On new..
Access Database for CIS17
MySQL - Creating donorof database offline
Please see speaker notes for additional information!
Please use speaker notes for additional information!
MS Access: Creating Databases
Poor Naming Standards.
Access and Condition Statements
Generating forms with the wizard in Access
PHPMyAdmin.
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.
Access Lesson 2 Creating a 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.
Click ‘browse’ to search your device for
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.
Environment/Report Tutorial
Please use speaker notes for additional information!
Start a new project – since this is the community edition I will save all when I get into VB and then I can choose the location and specify a folder.
This is the example I want the class to put up to become comfortable with creating and populating a table in Access.
Click on Save All to save everything and choose a location etc
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
ICT Database Lesson 2 Designing a Database.
BUSINESS REPORT 2016.
Using SQL with Access I create a database named
I am now going to do queries in SQL
Access Click on file and then you want a new database.
Database 2.
Data Base.
Presentation transcript:

Template for the portfolio.

your template.

I named the database trynew.mdb.

Here I am going to create a table and I am going to click on design view.

When you make a field name, please do not use embedded spaces and alo do not use special characters except the underscore. Most databases do not allow embedded spaces so we are going to try not to create bad habits.

When I create a number I need to go down to where it now shows field size and select the type - for example integer for whole numbers or single for small decimal numbers.

I have designated idno as the primary key I have designated idno as the primary key. This means that idno will uniquely identify the record. No other record will have the same idno.

Now I am saving the table as student.

Note that for every record there is an idno field followed by a stuName field followed by a major field followed by a numCrs field followed by a GPA field. Here I attempted to add a record with the same idno. I was told that I could not do that. I went back and changed the idno and things worked.

Here I am creating a query Here I am creating a query. I am going to add the student table and then close.

The table has been added, now I close.

I click on the fields to bring them down so they will be part of the query. I can choose which fields I want to see.

to see results of query. This query will now show only the records where the major is CI.

I am now seeing the records where the major is CI.

Now I am looking for the field numCrs to contain a value greater than 12. Note that this is a numeric literal testing a numeric field so it is not shown in quotes.

>=12.

Now I am looking for two things to be true Now I am looking for two things to be true. The major has to be CI AND the numCrs field has to be >=12.

relationship.