SQL Fundamentals - Practice 05
SQL Fundamentals - Practice 05
1. Write a query for the HR department to produce the addresses of all the departments. Use
the LOCATIONS and COUNTRIES tables. Show the location ID, street address, city, state
or province, and country in the output. Use a NATURAL JOIN to produce the results.
2. The HR department needs a report of all employees. Write a query to display the last
name, department number, and department name for all employees.
4. Create a report to display employees’ last name and employee number along with their
manager’s last name and manager number. Label the columns Employee, Emp#,
Manager, and Mgr#, respectively. Place your SQL statement in a text file named
lab_05_04.sql.
…
6. Create a report for the HR department 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. Save the script to a file named lab_05_06.sql.
…
If you want an extra challenge, complete the following exercises:
8. The HR department wants to determine the names of all employees who were hired after
Davies. Create a query to display the name and hire date of any employee hired after
employee Davies.