What is the difference between the types of join?
Sigiloso
Inner join - returns only the rows that have matching values in both tables. Left join - returns all rows from the left table, and matching rows from the right table. Right join - returns all rows from the right table, and matching rows from the left table. Full outer join - returns all rows from both tables, matching where possible.