Instruction
Let's start with the employees table.
It stores information about the people employed at Northwind. Each employee has:
- A unique ID (
employee_id). - A first and last name (
first_nameandlast_name). - A professional title (
title).
Pay attention to the column named reports_to, which contains the employee ID (from the same table) of the employee's manager. There are also other informative columns in this table, such as hire_date and address.
Exercise
Select all the information from the employees table.
Stuck? Here's a hint!
Use an asterisk (*) to select all columns.



