Exercise set 6 - SQL basics 5

  • Northwind exercise database presented in SQL basics 1 will be used in this exercise
  • Return exercise in .txt format and use formatting presented below (question always followed be the query)
  • Important: This exercise requires that the following tables are created (done in previous exercise set):
    • offices
    • storages
    • warehouses

Download exercise template here.

  • Important: Use only the template for returning your answers!
  • Add your answer queries between the dashed lines (see example below)
1 | Select all employees.
--------------------------------------------------
select * from employees;
--------------------------------------------------