Purchase Solution

Kudler Fine Foods- Complete Database SQL Queries

Not what you're looking for?

Ask Custom Question

Create the following two tables using the following fields:

Note: Supply the appropriate SQL Server data types when creating the tables. In the Employee table, create an Employee ID field that will generate a unique number for each employee and designate the field as the Primary Key. In the Job Title table, you will need to either utilize one of the listed fields as the table's primary key or you will need to create an additional field to use as the primary key. The primary key from the Job Title table will appear as the foreign key in the Employee table.
Employee

Emp_ID
Last_name
First_name
Address
City

State
Telephone_area_code
Telephone_number
EEO-1 Classification

Hire_date

Salary

Gender

Age

Foreign Key from Job Title table

Job_title

EEO-1 Classification

Job_title

Job description
Exempt / Non-Exempt Status

Question 2:

Using the SQL INSERT statement:

? Go to the Human Resources department in the Kudler Fine Foods intranet. Using information found in the Employee Files for the La Jolla and Encinitas stores, enter records into the employee table for the following employees:

a) Glenn Edelman

b) Eric McMullen

c) Raj Slentz

d) Erin Broun

e) Donald Carpenter

f) David Esquivez

g) Nancy Sharp
? Using the Kudler Fine Foods Job Classifications and Job Descriptions information, enter records into the job_title table for the following job titles:

a) Accounting Clerk
b) Asst. Manager
c) Bagger

d) Cashier
e) Computer Support Specialist
f) Director of Finance & Accounting
g) Retail Asst. Bakery & Pastry

h) Retail Asst. Butchers and Seafood Specialists

i) Stocker

Non-Exempt employees at Kudler Fine Foods are paid an hourly wage and are required to track their working hours.

Question 3:

Check the results by selecting all of the columns from both of your tables.

Question 4:

Using the database and tables from Week Two, write SQL statements and enter the records into the employee table for the workers identified in the Employee Files for the administrative offices and the Del Mar location. Check the results by selecting all of the columns from both of your tables

Question 5:

Using the database and tables in Week Two, write SQL queries using Between, Like and Union:

a) Write a SQL query that joins two tables in the example database and uses BETWEEN to restrict record selection. (Use salary to restrict the data.)
b) Write a SQL query that joins two tables in the example database and uses BETWEEN to restrict record selection. (Use hire dates to restrict the data.)
c) Write a SQL query that joins two tables in the example database and uses LIKE to restrict record selection. (Use telephone area codes to restrict data.)
d) Write a SQL query that joins two tables in the example database and uses LIKE to restrict record selection. (Use age to restrict data.)
e) Write a SQL query that uses UNION of the two tables to produce a third table.

Question 6:

Using the updated database, write the following queries using the SQL GROUP statement:

a) Group employees by job classification: Select the employees' last names and group them by EEO-1 Classification.
b) Group employees by salary: Select the employees' last names and group them by salary.
c) Group employees by salary within their job classification: Select the employees' last names and group them by salary within their EEO-1 Classification.
d) Select the employees' last names and group them by salary within job titles that are grouped into exempt and non-exempt.

Question 7:

Using the database and tables from Week Three, write queries using the SQL SELECT statement.

Note: Select all of the data from both of your tables before you perform the following.

a) Choose an EEO-1 Classification: Increase all employees' salaries that have: the selected EEO-1 classification by 10%.
b) Increase all employees' salaries by 5%.
c) Choose an employee from the employee table; delete this employee.

Question 8:

Using the database and tables from Week Three, write SQL statements to:

a) Calculate the average salary for all employees.
b) Calculate the maximum salary for exempt employees and the maximum salary for non-exempt employees.
c) Calculate the maximum salary for all employees.
d) Calculate the minimum salary for exempt employees and the maximum salary for non-exempt employees.
e) Calculate the minimum salary for all employees.

Purchase this Solution

Solution Summary

This solution deals with a set of SQL queries based on the Kudler Fine Foods Virtual Case. This includes a set of SQL DDL commands as well as DML commands. The solution consists of 18 pages of detailed queries with screen shots of outputs. Also attached is a .SQL file designed using Microsoft SQL Server.
The solution includes a set of 8 comprehensive questions that deals with creation of the Kudler Fine Foods database as well as displaying data from the database.

Purchase this Solution


Free BrainMass Quizzes
Word 2010: Table of Contents

Ever wondered where a Table of Contents in a Word document comes from? Maybe you need a refresher on the topic? This quiz will remind you of the keywords and options used when working with a T.O.C. in Word 2010.

Inserting and deleting in a linked list

This quiz tests your understanding of how to insert and delete elements in a linked list. Understanding of the use of linked lists, and the related performance aspects, is an important fundamental skill of computer science data structures.

Basic UNIX commands

Use this quiz to check your knowledge of a few common UNIX commands. The quiz covers some of the most essential UNIX commands and their basic usage. If you can pass this quiz then you are clearly on your way to becoming an effective UNIX command line user.

Word 2010: Tables

Have you never worked with Tables in Word 2010? Maybe it has been a while since you have used a Table in Word and you need to brush up on your skills. Several keywords and popular options are discussed as you go through this quiz.

C++ Operators

This quiz tests a student's knowledge about C++ operators.