What is the difference between a left, inner, and outer join?
What is the difference between a left, inner, and outer join?
Answer: A outer join will combine all rows into a table, even if one instance is not present in one of the tables. An inner join will leave you will only data instances that were originally present in all combined tables. Finally a left join will only have instances in the original table even if they aren't present in the additionally joined tables.