Week 9 – Databases.

Slides:



Advertisements
Similar presentations
Homework for November 2011 Nikolay Kostov Telerik Corporation
Advertisements

1 LBSC 690: Week 9 SQL, Web Forms. 2 Discussion Points Websites that are really databases Deep vs. Surface Web.
HUMAN RESOURCES AND MANAGEMENT THE LABOUR MARKET THE LABOUR MARKET IS WHERE EMPLOYERS MEET EMPLOYEES. PREDICTIONS ABOUT JOBS ARE CALLED OCCUPATIONAL FORCASTS.
1 Applied ICT Information and its use. Applied ICT 2 Objectives Be able to interpret diagrams that show organisations’ structures. Understand how organisations.
Inner Join vs. Outer Join
MS Access. Access is a DBMS/RDMS DBMS = Database Management System RDMS = Relational Database Management System.
Paying Bills Warm Up: What are some bills your parents pay monthly? What must a producer consider when setting a price for the product being sold?
Lesson 9: Salary Consumer Math: p Some people are paid a fixed amount of money regularly, no matter how many hours they need to complete their.
Applications.  Applications – company documents that give the employers facts about you that can be kept on file  Basic information on education, skills,
Traditions and Innovations
CKDPACK.com. MultiStore Shopping Cart has multi-store abilites which allow you to manage multiple stores from one admin interface. There are many advantages.
Texas Bicycle Sports Presented by : Muhammad Rizvi Terry Lee Madhuri Yelamanchili.
Labour costs Methods used to calculate costs. Labour costs Labour costs can be made up as: – Basic pay – Overtime – Bonuses Additional costs could be.
Ch 13 pg “Applying for a Job”. Applying for a Job 0 Applying means that you present yourself as a job candidate- possible employee- for the position.
1-1 Hourly Rates and Overtime What You’ll Learn:  How to find a wage based on an hourly wage with or without overtime.
Department of Labor Regulations on Overtime. Fair Labor Standards Act – legislation that governs minimum wage and overtime Positions are considered hourly.
+ Cost Centers Identifying and Breaking Down Job Costs.
Increase Your BDC Production by 15-30% WITHOUT Increasing Your Budget Full Name I Company I Job Title I A Top-Down Guide to Fostering Management.
© 2014 Cengage Learning. All Rights Reserved.
Implement expense-control strategies
Commissions, Royalties, & Piecework Pay
Chapter 17 Job Order Costing
Earning Income How Can I Get Paid?.
Topics Wage and Hour Division (WHD) enforcement
Portland State University
Learning Objectives Today we will Learn:
Functional Business Systems
Objective 1.01 Describe employment opportunities, educational requirements, and job trends.
BIG Data 25 Need-to-Know Facts.
LESSON 12-1 Preparing Payroll Time Cards
Dr. BALAMURUGAN MUTHURAMAN
How much should I get for working??…
Payroll Accounting $ $ $ $ Making Accounting Relevant Chapter 12
© 2014 Cengage Learning. All Rights Reserved.
How to calculate Commission.
Using ICT Software . Database Spreadsheet.
BASIC FIXED & BREAK EVEN FORM
Retail Sales is used to illustrate a first dimensional model
Commission Sales commissions are paid to employees or companies that sell merchandise in stores or by calling on customers. The commission is meant to.
Implement expense-control strategies
Question 01 A company database needs to store information about employees (identified by NIC, with salary and phone as attributes), departments (identified.
Implement expense-control strategies
Extra ER.
Entity-Relationship Modeling "Extended"
© 2014 Cengage Learning. All Rights Reserved.
Review function operations of +, -, x,
Extra ER.
Timecards.
Commissions, Royalties, & Piecework Pay
Federal contracting laws: walsh-healey act
Wages & Salaries Commission Hourly rate Overtime Wage Slips
Conceptual Data Modeling Using Entities & Relationships
© 2014 Cengage Learning. All Rights Reserved.
Journalizing Transactions
In Class Exercises Phil Tayco Slide version 1.1 San Jose City College
MANAGING HUMAN RESOURCES
Unit #1: Earning Income.
Section 4 Define a fixed-term contract? (2)
Journals and Journalizing
Print or display a list of all records where the state is equal to either MA or RI. EndLOOP problems. The loop is the only thing that will be different.
Problem #2: Print or display a list of all records where the year of birth is greater than 1980 and the marital status is married.
Problem #2: Print or display a list of all records where the year of birth is greater than 1980 and the marital status is married.
Entity-Relationship Modeling "Extended"
Extra ER.
Print or display a list of all records where the state is equal to either MA or RI.
Organizational Structure and Operations
C3 Orientation.
1. Earning and managing money
Entity-Relationship Modeling "Extended"
Extra ER LAB #2.
Presentation transcript:

Week 9 – Databases

Topics this week Transmission media Networks The Internet of Things Media in Oman Networks Switching The Internet Protocol The Internet of Things Newer applications of and telecommunications RFID GPS

Last name First name Address Database Basics Databases consist of Records Records consist of Fields Your HR record might look like this: Field Field Field Last name First name Address

Database Basics If we kept this employee information, what would a record look like? Draw it out. Last name First name Address Department Hours worked Hourly salary Job title Supervisor’s name Work place qualifications (degrees, certificates, professional designations)

Database Basics SQL access to information Structured Query Language (SQL) SELECT TITLE, CATEGORY FROM DVD_STORE WHERE CATEGORY = 'Thriller' and RENTPRICE < 5 The program will pull a field (or two) from a database if a field is equal to some value.

Database Basics If we kept this employee information, how would you get the names of all employees who worked in the marketing department? Last name First name Address Department Hours worked Hourly salary Job title Supervisor’s name Work place qualifications (degrees, certificates, professional designations)

Database Basics How might I use this information to print out a pay check? Last name First name Address Department Hours worked Hourly salary Job title Supervisor’s name Work place qualifications (degrees, certificates, professional designations)

Database Basics How would I calculate all the wages paid last week in the marketing department? Last name First name Address Department Hours worked Hourly salary Job title Supervisor’s name Work place qualifications (degrees, certificates, professional designations)

Database Basics How would I list all the employees supervised by Abdul Said? Last name First name Address Department Hours worked Hourly salary Job title Supervisor’s name Work place qualifications (degrees, certificates, professional designations)

Database Complications If we kept this employee information, how would you get the names of all employees who had an MBA? Last name First name Address Department Hours worked Hourly salary Job title Supervisor’s name Work place qualifications (degrees, certificates, professional designations)

Database Complications What if I wanted to store the names of all the customers an employee sold a product to last week? Last name First name Address Department Hours worked Hourly salary Job title Supervisor’s name Work place qualifications (degrees, certificates, professional designations)

Database Complications What if I wanted to know which employee sold the most products last week? Last name First name Address Department Hours worked Hourly salary Job title Supervisor’s name Work place qualifications (degrees, certificates, professional designations)

Database Complications What if I wanted to know which employee has increased sales the most over the last six months? Last name First name Address Department Hours worked Hourly salary Job title Supervisor’s name Work place qualifications (degrees, certificates, professional designations)

Database Example You want to track sales for Lulu’s HyperMarket. What records might you use to track this information: Customer name, address, age, number of children, all the products he bought today. All the products he bought in any visit in the last 90 days. For the products we want to know product name, size, UPC number, quantity, department, unit cost, unit price, profit, wholesaler. How would you calculate the amount of profit he generated for your company in the last 90 days?

Review What are 3 things from today’s class you want to remember?