Step By Step Lei Yang Computer Science Department.

Slides:



Advertisements
Similar presentations
Welcome to Family Feud This game sample is provided compliments of PTT, Inc. To Start your game, click below: Start To Reset your game so you can change.
Advertisements

F451 Discussions for Section II The Sieve and the Sand.
CDS Field Attributes. CDS provides users the mean to collect additional patient information that are not available through standard screens. Field attributes.
MA10210: ALGEBRA 1B
The Web Wizards Guide To JavaScript Chapter 3 Working with Forms.
The Integration of Grey Literature and Primary Research Data in Open Source Analysis: The Jordan Property Regime June Crowe Manager Manager Open Source.
GROUP THREE 1. Chairman – Ms JESCA MURIMA- ZIMBABWE 2. Rapporteur – Mr. SAPALOV QUITA- NAMIBIA 3. Member _Mr. GERSON BANDA- ZAMBIA 4. Member _Ms MARY AIWINIA-
SQL/PL SQL Oracle By Rana Umer. Quiz 2 Q1.Create a table called "Persons" that contains five columns: PersonID, LastName, FirstName, Address, and City.
Chapter 4 Tutorial.
Survey for Providers Received: 8- Cable companies 21- Telephone companies 37- Telecommunication companies 2- CLEC 14- Do not provide service in MI.
Tariffs, Quotas, Subsidies
Innovate, Develop & Enhance your App (IDEA) Contest submission Fill out all the information in this PPT, save and upload bit.ly/ideareg1bit.ly/ideareg1.
Database Design Week 10.
Survey of North West Charities BY IOFNW – JUNE 2014.
1 Database Systems 10.8, 2008 Lecture #4. 2 Course Administration Assignment #1 is due next Wed (outside 336/338). Course slides will now have black background.
RM Quick Reminder Test. Q1: What is it called when ppts take part in either the experimental condition, or the control condition, but not both? A:
Design of Questionnaire for teachers FocusNo. of Qs (A) General Feedback 3Q12 Q8 Q13 (B) Teaching & Learning Style 2Q11 Q10 (C) Language Development 4141.
Slapped HW.
Concepts and Vocabulary
There is tar inside a cigarette There is lots off acids such as candle wax.
Quiz on weight and mass This quiz has 10 multiple choice questions Click on the answer box you think is correct BEWARE ! One mistake and you have to start.
AP Calculus BC Review for Quiz -Determining convergence of geometric series -Creating a power series -Finding a Taylor Series sum expression.
Probability Models The Bernoulli Family. Bernoulli Trials Geometric Geom(p) Mean stdev How long till first success Binomial Bion(n, p) Mean Stdev r successes.
Title Slide Directions:. My Jeopardy Category 1 Category 2 Category 3 Category 4 Category Final Jeopardy.
Manipulation of Query Expressions. Outline Query unfolding Query containment and equivalence Answering queries using views.
Rotational Symmetry of 3-D Figures To show the dynamic figures properly, the evaluation version or the plugin of Cabri 3D (V2.0 or above) must be installed.
Antisocial Behaviour Customer Satisfaction Survey Results North Community Safety Team COMMUNITY SAFETY.
Setting Next Year’s Standard Cost David Jones. ` Budget Year N Std Cost Year N -ve variance vs.Std cost +ve variance vs.Std cost €10 €8 Budget Year N+1.
Solution to Q1 Note: the mandatory side of the relationship s are not identified Note: Kroenke uses the ‘rounded corners’ notation for a weak entity.
Greater Washington Board of Trade Sustainability Survey Released April 21, 2010.
If, we assume that a number of variables observed (latent variables), then what the method does is to extract a group of indicators to characterize a variable.
Relationship and Query Assignment. Creating Relationship Assignment: Create a blank database (use any names you like) And then, import the three Excel.
Introduction to MS Access. Creating a New Database File/New –Blank database –New database name and location.
CS 104 Introduction to Computer Science and Graphics Problems Introduction to Database (2) Basic SQL 12/05/2008 Yang Song.
Database Basics. Definitions Database Relational database Table Record Field Primary key.
Dr Derek Peacock14/08/20151 Database Design 1:1 Relationships Dr Derek Peacock.
ACCESS TABLES & QUERIES. OBJECTIVES Create tables Establish table relationships Create queries Specify criteria for different data types Compact & Repair.
Database terms Mr. Brunton.
Introduction to Database Lei Yang Computer Science Department.
In this activity, we are going to create a query for a computer company. The query will calculate the total and average expenses of the salesmen for each.
Access: Queries Ad-hoc Reporting Chapter T. Access Queries Queries Access Properties Sorting Selection Criteria Calculations.
Query – One of the objects in Microsoft Access – It can help users extract data, which meets the criteria defined by them, from a database file. – It must.
Constraints - primary and foreign keys in Oracle Please use speaker notes for additional information!
MS Access. Access is a DBMS/RDMS DBMS = Database Management System RDMS = Relational Database Management System.
Data Modelling Using Entity-Relationship (ER) Model
Databases.  A database is simply a collection of information stored in an orderly manner.  A database can be as simple as a birthday book, address book.
Relational Algebra Sample Questions.
Access Lessons 1, 2 and 3 ©2009 M and K Solutions, LLC – All Rights Reserved.
Study Opportunities1 Database table quiz What is your name?
USING ACCESS TO SEGMENT SURVEY DATA. OPEN ACCESS You May Need to Search for the Program You May Need to Search for the Program Access is a Database Access.
Subqueries.
Gender Division of Labor Group Project Team Members: William Noell & Mike Goldman.
The Student Registry Database Ian Van Houdt and Muna alfahad.
N-ary Relations & Their Applications. 2 n-ary Relations Let A 1, A 2, …, A n be sets. An n-ary relation on these sets is a subset of A 1 x A 2 x … x A.
DAY 17: ACCESS CHAPTER 1-2 Rahul Kavi October 15,
COMPREHENSIVE Access Tutorial 1 Creating a Database.
Notes: **A Row is considered one Record. **A Column is a Field. A Database is…  an organized set of stored information usually on one topic  a collection.
Comparison Operators Relational Operators.
Chapter 3 Introduction to SQL(3)
SQL-lab Download sql script file sailors.txt
Relational Schemas Classroom (building, room-number, capacity) Department (dept-name, building, budget) Course (course-id, title, dept-name, credits) Instructor.
Generalization.
Introduction to Computer Science (CIS 101)
Relational Algebra Sample Questions.
CS122 Using Relational Databases and SQL
Topic - DML - Select statement

Practice Project Practice to know SQL
Presentation transcript:

Step By Step Lei Yang Computer Science Department

Create A Table-1 Create a table named Employee Attribute Set ◦ ID: Auto Number(primary key) ◦ Name: Text ◦ Gender: Text(Lookup Wizard) ◦ Salary: Money ◦ DptName: Text

Populate Data-2 1 Simple Method 2 Using Forms 3 Import Data From File

Query-3 Q1 ◦ Find all information of female employees Q2 ◦ Find all information of employees whose salaries are greater than 5000 Q3 ◦ Find the names of male employees from HR department Q4 ◦ Find the names starting with “J”

Query-4 Q4 ◦ Compute the average salary of the company Q5 ◦ Compute the number of female employees Q6 ◦ Compute the average salary of male and female employees

Report-5 1 Basic Report 2 Chart Report