FROM Clause

The FROM clause defines the table from which to retrieve data.

SELECT first_name FROM employees;

You can join multiple tables using FROM with joins (covered later).