Embed presentation
Download to read offline















A JOIN clause combines rows from two or more tables based on a related column. There are several types of JOINs - INNER JOIN returns rows that match between tables, LEFT JOIN returns all rows from the left table plus matched rows from the right table, RIGHT JOIN returns all rows from the right table plus matched rows from the left table. A FULL JOIN returns all rows when there is a match in either left or right table. A SELF JOIN joins a table to itself.













