+ All Categories
Home > Documents > Practice 4 On oracle sql

Practice 4 On oracle sql

Date post: 13-Oct-2015
Category:
Upload: sayed-karar-waris
View: 62 times
Download: 0 times
Share this document with a friend
Description:
Practice 4 On oracle sql
6
Practice 4 - Part One 1. Write a query to display the la st name, department n umber, and department name for all employees. 2. Create a unique lis ting of all j obs that are in department 80. Inclu de the location o f the department in the output. . Write a query to display the emplo yee last name, d epartment name, locatio n I!, and city o f all employees "ho earn a commission.
Transcript

Practice 4 - Part One1. Write a query to display the last name, department number, and department name for all employees.

2. Create a unique listing of all jobs that are in department 80. Include the location of the department in the output.

3. Write a query to display the employee last name, department name, location ID, and city of all employees who earn a commission.

4. Display the employee last name and department name for all employees who have an a(lowercase) in their last names. Place your SQL statement in a text file named lab4_4.sql.

Practice 4 - Part Two

This practice is intended to give you practical experience in extracting data from more than one table. Try using both the Oracle proprietary syntax and the SQL: 1999 compliant syntax.

In Part Two, questions 5-8, try writing the join statements using ANSI syntax.

In Part Two, questions 9-11, try writing the join statements using both the Oracle syntax and the

ANSI syntax.

5. Write a query to display the last name, job, department number, and department name for all employees who work in Toronto.

6. Display the employee last name and employee number along with their managers last name and manager number. Label the columns Employee, Emp#, Manager, and Mgr#, respectively.Place your SQL statement in a text file named lab4_6.sql.

7. Modify lab4_6.sql to display all employees including King, who has no manager. Order the results by the employee number.Place your SQL statement in a text file named lab4_7.sql. Run the query inlab4_7.sql.If you have time, complete the following exercises:8. Create a query that displays employee last names, department numbers, and all the employees who work in the same department as a given employee. Give each column an appropriate label.9. Show the structure of the JOB_GRADES table. Create a query that displays the name, job, department name, salary, and grade for all employees.

If you want an extra challenge, complete the following exercises:

10. Create a query to display the name and hire date of any employee hired after employee Davies.

11. Display the names and hire dates for all employees who were hired before their managers, along with their managers names and hire dates. Label the columns Employee, Emp Hired, Manager, and Mgr Hired, respectively.


Recommended