Exercise set 2 - SQL basics 1

  • Download the Northwind exercise database here.
  • This database will be used for all further exercises in this course (SQL basics 1-5).
  • Download the exercise template to your computer by right-clicking the link and choose Save As.
  • Familiarise yourself with the exercise database before starting: exercise database presentation.

Download exercise template here

Important:
  • Use only the provided exercise template for returning your answers!
  • Answers returned with any other way than using exercise template will not be evaluated.
  • Only add one query as your answer between the dashed lines without comments or any additional statements (see example below)!
  • Do not modify the structure of the exercise template!
1 | Select all employees.
--------------------------------------------------
select * from employees;
--------------------------------------------------