CSC 443 Data Base Management Systems
Dr. R. M. Siegfried
Assignment 11 - Creating And Using Views
Due Monday, December 9, 2013
Using the database that we have already seen in
Assignment #6, create two views:
- A view that includes:
- the first name, middle initial and last name of the employee
- the employee's address
- the employee's salary
- first and last name of the employee's supervisor
- the name of the employee's department
- A view that includes:
- The name, number and location of the project
- The name of the department that is responsible for the project
- The name of the department's supervisor
Also, write SELECT
statements to answer the
following queries:
- List the full names and salaries for everyone working for Franklin
Wong.
- List the full names and salaries for every in the Research
Department.
- List the average salaries for employees working for each of the
departments.
- List the total number of employees working on the ProductX project.
- List the total number of employees working on each project.
[Back to the Assignment
Page]