What is a foreign key?
A key that links a table to another in the database
How do you join two SQL tables?
select *
from xxx
(join clause) using (a column)
How do you temporarily rename columns or tables in a SQL statement?
creating alias using the as clause