Calculate the maximum salary for all employees


Assignment:

Write SQL queries using Between, Like and Union:

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.)

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.)

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.)

Write a SQL query that joins two tables in the example database and uses LIKE to restrict record selection. (Use age to restrict data.)

Write a SQL query that uses UNION of the two tables to produce a third table.

Using the database included write the following queries using the SQL GROUP statement:

Group employees by job classification: Select the employees' last names and group them by EEO-1 Classification.

Group employees by salary: Select the employees' last names and group them by salary. Group employees by salary within their job classification: Select the employees' last names and group them by salary within their EEO-1 Classification.

Select the employees' last names and group them by salary within job titles that are grouped into exempt and non-exempt.

Write queries using the SQL SELECT statement.

Select all of the data from both tables before performing the following.

Choose an EEO-1 Classification: Increase all employees' salaries that have: the selected EEO-1 classification by 10%.

Increase all employees' salaries by 5%.

Choose an employee from the employee table; delete this employee.

Print out the SQL statements and the data from both tables in order to show how the data was affected.

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

Calculate the average salary for all employees.

Calculate the maximum salary for exempt employees and the maximum salary for non-exempt employees.

Calculate the maximum salary for all employees.

Calculate the minimum salary for exempt employees and the maximum salary for non-exempt employees.

Calculate the minimum salary for all employees.

 Print out the SQL statements and the results.INSERT INTO `Employee` ( `Last_Name` , `First_Name` , `Address` , `City` , `State` , `Telephone_Area_Code` , `Telephone_Number` , `EEO_1Classification` , `Hire_Date` , `Salary` , `Gender` , `Race` , `Age` )
VALUES ( 'Nquyen', 'Meredith', '10583 Arenas St ', 'La Jolla ', 'CA', '615', '5550102', 'Technician', '9/27/1998', '$43,000.00', 'M', 'Caucasian', '25'
);

INSERT INTO `Employee` ( `Last_Name` , `First_Name` , `Address` , `City` , `State` , `Telephone_Area_Code` , `Telephone_Number` , `EEO_1Classification` , `Hire_Date` , `Salary` , `Gender` , `Race` , `Age` )
VALUES (
'Stephens', 'Harvey', '7863 High Bluff Drive ', 'La Jolla', 'CA', '619', '5550123', 'Officials & Managers', '3/1/1998', '$75,000.00', 'M', 'Caucasion', '51'

Attachment:- Champagne db.rar

Solution Preview :

Prepared by a verified Expert
PL-SQL Programming: Calculate the maximum salary for all employees
Reference No:- TGS01939174

Now Priced at $30 (50% Discount)

Recommended (92%)

Rated (4.4/5)