What is a foreign key?
foreign key is attribute data that is present/shared by more that one table aka a shared data value/attribute.. foreign keys can be foreign keys even if they have different names
How do you join two SQL tables?
JOIN “tableName” using (“attribute”)
if column names are not the same
on tableName1.attribute1 = tableName2.newAttribute
How do you temporarily rename columns or tables in a SQL statement?
by using the “as” keyword