What is a full outer join?
Joins all rows from both tables and puts nulls in the rows that have no information in the other table.
What is a left out join?
It takes everything from the left database and adds information from the other table for the rows that are in the left database.
What is inner join?
It only returns the datasets that overlap.
What is a cross join?
It is based on cartesian product. For each row in both tables, we will match each row with each row.