Deals Of The Week - hours only!Up to 80% off on all courses and bundles.-Close
Introduction
Get to know the database
3. The employees table
Summary

Instruction

Okay, let's start with the employees table.

The employees table stores information about the people employed at Northwind. Each employee has a unique ID (stored in the column employee_id), a first and last name (first_name, last_name) and a professional title (title). There are also other 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.